From 2d368f66ad76e533609ee849245fe46e1610fc86 Mon Sep 17 00:00:00 2001 From: AEA2002 Date: Tue, 25 Aug 2015 18:34:31 -0400 Subject: [PATCH] Minor edit in Find the Nth Character In "Use Bracket Notation to Find the Nth Character in a String" section removed "last" from 'The third last letter of lastName should be..." --- challenges/basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/basic-javascript.json b/challenges/basic-javascript.json index 3465c9dcb1..aa07b4b4b6 100644 --- a/challenges/basic-javascript.json +++ b/challenges/basic-javascript.json @@ -189,7 +189,7 @@ "Try looking at the secondLetterOfFirstName variable declaration if you get stuck." ], "tests": [ - "assert(thirdLetterOfLastName === 'v', 'The third last letter of lastName should be a \"v\"');" + "assert(thirdLetterOfLastName === 'v', 'The third letter of lastName should be a \"v\"');" ], "challengeSeed": [ "var firstName = \"Ada\";",