From 0deca2cb919eb2b4529ed37302a46c583aec59aa Mon Sep 17 00:00:00 2001 From: martynov-94 <31200896+martynov-94@users.noreply.github.com> Date: Thu, 21 Jan 2021 18:30:50 +0300 Subject: [PATCH] typo wrong order of words --- 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 13686acdf4..318cf28915 100644 --- a/1-js/09-classes/01-class/article.md +++ b/1-js/09-classes/01-class/article.md @@ -51,7 +51,7 @@ user.sayHi(); When `new User("John")` is called: 1. A new object is created. -2. The `constructor` runs with the given argument and assigns `this.name` to it. +2. The `constructor` runs with the given argument and assigns it to `this.name`. ...Then we can call object methods, such as `user.sayHi()`.