From 1deb45a122ed2a439ada223fdbfa84e20bc8ebae Mon Sep 17 00:00:00 2001 From: Colin Thornton Date: Sat, 9 Dec 2017 23:16:36 +0900 Subject: [PATCH] chore(seed/challenges): Change misleading variable name in example Changed variable named "thisVariableNameIsTooLong" to "thisVaribaleNameIsSoLong" Closes #16165 --- .../basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json b/seed/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json index 4cd3a39a1b..32cea57be0 100644 --- a/seed/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json +++ b/seed/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json @@ -300,7 +300,7 @@ "

Best Practice

", "Write variable names in Javascript in camelCase. In camelCase, multi-word variable names have the first word in lowercase and the first letter of each subsequent word is capitalized.", "Examples:", - "
var someVariable;
var anotherVariableName;
var thisVariableNameIsTooLong;
", + "
var someVariable;
var anotherVariableName;
var thisVariableNameIsSoLong;
", "
", "Modify the existing declarations and assignments so their names use camelCase.
Do not create any new variables." ],