From b9cfc09eb9d65e1c48eae304e33df2161946700b 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..." --- 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 3465c9dcb1..aa07b4b4b6 100644 --- a/seed/challenges/basic-javascript.json +++ b/seed/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\";",