diff --git a/1-js/04-object-basics/01-object/article.md b/1-js/04-object-basics/01-object/article.md index 1d3c63af..9f64a249 100644 --- a/1-js/04-object-basics/01-object/article.md +++ b/1-js/04-object-basics/01-object/article.md @@ -495,7 +495,7 @@ Now we have two variables, each one with the reference to the same object: ![](variable-copy-reference.png) -Now can use any variable to access the cabinet and modify its contents: +We can use any variable to access the cabinet and modify its contents: ```js run let user = { name: 'John' };