From d65d2a93b3488a12b87cf86264c9b5073ad5a3fa Mon Sep 17 00:00:00 2001 From: Graham Date: Mon, 30 Oct 2017 17:50:06 -0500 Subject: [PATCH] fix "level" typo --- javascript-fundamentals.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript-fundamentals.md b/javascript-fundamentals.md index 6904d58..51496af 100644 --- a/javascript-fundamentals.md +++ b/javascript-fundamentals.md @@ -59,7 +59,7 @@ this.id = attribute.id || null this.name = attribute.name || '' this.gender = attribute.gender || '' - this.jsLevel = attribute.jsLeve || 0 + this.jsLevel = attribute.jsLevel || 0 } User.prototype.jsLevelUp = function() {