From 9b52c396d34697f73c7219bd10f508a5ba7d3a82 Mon Sep 17 00:00:00 2001 From: hacksalot Date: Tue, 5 Jan 2016 22:32:46 -0500 Subject: [PATCH] Fix missing method rename. --- src/core/jrs-resume.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/jrs-resume.js b/src/core/jrs-resume.js index 35e4be2..edb5189 100644 --- a/src/core/jrs-resume.js +++ b/src/core/jrs-resume.js @@ -148,7 +148,7 @@ Definition of the JRSResume class. JSON Resume v0.0.0 doesn't allow additional properties at the root level, so tuck this into the .basic sub-object. */ - JRSResume.prototype.imp = function() { + JRSResume.prototype.i = function() { this.basics = this.basics || { imp: { } }; return this.basics; };