From 968e5d98b72d144cadf4b52ce4c93c9b76d485fa Mon Sep 17 00:00:00 2001 From: Michelle Brien Date: Tue, 28 Mar 2017 20:51:17 +0100 Subject: [PATCH] fixed typo in storing values exercise --- .../basic-javascript.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json b/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json index 51ff66aea6..ba2203b18b 100755 --- a/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json +++ b/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json @@ -129,10 +129,10 @@ "description": [ "In JavaScript, you can store a value in a variable with the assignment operator.", "myVariable = 5;", - "Assigns the Number value 5 to myVariable.", + "This assigns the Number value 5 to myVariable.", "Assignment always goes from right to left. Everything to the right of the = operator is resolved before the value is assigned to the variable to the left of the operator.", "
myVar = 5;
myNum = myVar;
", - "Assigns 5 to myVar and then resolves myVar to 5 again and assigns it to myNum.", + "This assigns 5 to myVar and then resolves myVar to 5 again and assigns it to myNum.", "
", "Assign the value 7 to variable a.", "Assign the contents of a to variable b."