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." ],