From 9d062c38951737bb4cfea67f1450c5ce15e3404f Mon Sep 17 00:00:00 2001 From: Shea Cole Date: Mon, 19 Jun 2017 15:27:56 -0500 Subject: [PATCH] Misspelled word The word "litteral" should be "literal". --- 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 b2d612a5..18816211 100644 --- a/1-js/04-object-basics/01-object/article.md +++ b/1-js/04-object-basics/01-object/article.md @@ -125,7 +125,7 @@ delete user["likes birds"]; Now everything is fine. Please note that the string inside the brackets is properly quoted (any type of quotes will do). -Square brackets also provide a way to obtain the property name as the result of any expression - as opposed to a litteral string - like from a variable as follows: +Square brackets also provide a way to obtain the property name as the result of any expression - as opposed to a literal string - like from a variable as follows: ```js let key = "likes birds";