From 3b27665b919b21b39e52fe5f131fa853dc2085c2 Mon Sep 17 00:00:00 2001 From: Logan Tegman Date: Sun, 1 Nov 2015 10:06:22 -0800 Subject: [PATCH] Fix Sift Through Test With Regex Wording Closes #3898 --- 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 a871f43675..30663b5836 100644 --- a/challenges/basic-javascript.json +++ b/challenges/basic-javascript.json @@ -1183,7 +1183,7 @@ "i means that we want to ignore the case (uppercase or lowercase) when searching for the pattern.", "Regular expressions are written by surrounding the pattern with / symbols.", "Let's try selecting all the occurrences of the word and in the string Ada Lovelace and Charles Babbage designed the first computer and the software that would have run on it.", - "We can do this by replacing the . part of our regular expression with the current regular expression with the word and." + "We can do this by replacing the . part of our regular expression with the word and." ], "tests": [ "assert(test==2, 'message: Your regular expression should find two occurrences of the word and.');",