From ae6746f978a56fa5b059b0cfbd3bcb85e8556bbe Mon Sep 17 00:00:00 2001 From: benmcmahon100 Date: Fri, 21 Aug 2015 22:37:34 +0100 Subject: [PATCH] Fix a syntax(ish) error --- seed/challenges/basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json index f2264513e1..ba0efd4903 100644 --- a/seed/challenges/basic-javascript.json +++ b/seed/challenges/basic-javascript.json @@ -634,7 +634,7 @@ "difficulty": "9.9818", "description": [ "Now that we've learned how to shiftthings from the start of the array, we need to learn how to unshiftstuff back to the start", - "Let's take the code we had last time and unshiftthis value to the end: \"Paul\" " + "Let's take the code we had last time and unshiftthis value to the start: \"Paul\" " ], "tests": [ "assert((function(d){if(d[0].toLowerCase() == 'paul' && d[1] == 23 && d[2][0] != undefined && d[2][0] == 'dog' && d[2][1] != undefined && d[2][1] == 3){return(true);}else{return(false);}})(myArray), 'myArray should now have [\"Paul\", 23, [\"dog\", 3]])');"