From b0e33373b626b84a84aade823a5c73c30156f86d Mon Sep 17 00:00:00 2001 From: paroche <46547072+paroche@users.noreply.github.com> Date: Fri, 27 Sep 2019 23:04:31 -0600 Subject: [PATCH] Update article.md Adjustments to line about class properties. Add "the", change "the" to "a". --- 1-js/09-classes/01-class/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/09-classes/01-class/article.md b/1-js/09-classes/01-class/article.md index e41a0986..e924d365 100644 --- a/1-js/09-classes/01-class/article.md +++ b/1-js/09-classes/01-class/article.md @@ -320,7 +320,7 @@ class User { new User().sayHi(); ``` -The property `name` is not placed into `User.prototype`. Instead, it is created by `new` before calling constructor, it's the property of the object itself. +The property `name` is not placed into `User.prototype`. Instead, it is created by `new` before calling the constructor, it's a property of the object itself. ## Summary