From a0cf28ba14038fbc5492e5722f4eada4226c7b54 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Sun, 13 Aug 2017 21:42:16 +0200 Subject: [PATCH] closes #128 --- 1-js/07-object-oriented-programming/09-class/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/07-object-oriented-programming/09-class/article.md b/1-js/07-object-oriented-programming/09-class/article.md index 2cf4725e..717376e8 100644 --- a/1-js/07-object-oriented-programming/09-class/article.md +++ b/1-js/07-object-oriented-programming/09-class/article.md @@ -116,7 +116,7 @@ class User { constructor(name) { // invokes the setter - this._name = name; + this.name = name; } *!*