From 36f30076510ffe30338236347dfddefc008aa731 Mon Sep 17 00:00:00 2001 From: Georgy Date: Mon, 21 Aug 2017 17:23:54 -0400 Subject: [PATCH] Update 01-object Little grammar fix, add subject "we". --- 1-js/04-object-basics/01-object/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' };