From 9ed5fda5d65b05c49b0f48960524b64fb719d6d0 Mon Sep 17 00:00:00 2001 From: RamiroPinol Date: Thu, 26 Jan 2017 18:04:52 -0300 Subject: [PATCH] solved typo: loged -> logged --- .../02-javascript-algorithms-and-data-structures/es6.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/02-javascript-algorithms-and-data-structures/es6.json b/seed/challenges/02-javascript-algorithms-and-data-structures/es6.json index 6bdadca4aa6..c65d0002bb2 100644 --- a/seed/challenges/02-javascript-algorithms-and-data-structures/es6.json +++ b/seed/challenges/02-javascript-algorithms-and-data-structures/es6.json @@ -48,7 +48,7 @@ "console.log(camper); ", "var camper = 'David'; ", "// logs undefined", - "The code runs in the following order: the variable camper is declared as undefined, camper is loged, and then David is assigned to camper. This code will run without an error.", + "The code runs in the following order: the variable camper is declared as undefined, camper is logged, and then David is assigned to camper. This code will run without an error.", "A new keyword was introduced in ES6 to solve the problems with the var keyword, called let. With the let keyword, all the examples we just saw will cause an error to appear. We can no longer overwrite variables or use a variable before we declare it. Some modern browsers requires you to add \"use strict\" to the top of your code before you can able to use the new features in ES6", "Let's try using the let keyword;", "Instructions",