From 82502dbe27996face74a2ae829a31e4e2f76c4e0 Mon Sep 17 00:00:00 2001 From: sneaky-moose Date: Tue, 30 Oct 2018 12:24:38 +1100 Subject: [PATCH] Correct spelling mistake in JS comment independant -> independent --- 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 cf161926..eb15654c 100644 --- a/1-js/04-object-basics/01-object/article.md +++ b/1-js/04-object-basics/01-object/article.md @@ -605,7 +605,7 @@ for (let key in user) { } */!* -// now clone is a fully independant clone +// now clone is a fully independent clone clone.name = "Pete"; // changed the data in it alert( user.name ); // still John in the original object