Skip to content

Commit

Permalink
Fix Sift Through Test With Regex Wording
Browse files Browse the repository at this point in the history
  • Loading branch information
ltegman committed Nov 1, 2015
1 parent 1f61c4b commit 9c9e1af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seed/challenges/basic-javascript.json
Original file line number Diff line number Diff line change
Expand Up @@ -1183,7 +1183,7 @@
"<code>i</code> means that we want to ignore the case (uppercase or lowercase) when searching for the pattern.",
"<code>Regular expressions</code> are written by surrounding the pattern with <code>/</code> symbols.",
"Let's try selecting all the occurrences of the word <code>and</code> in the string <code>Ada Lovelace and Charles Babbage designed the first computer and the software that would have run on it</code>.",
"We can do this by replacing the <code>.</code> part of our regular expression with the current <code>regular expression</code> with the word <code>and</code>."
"We can do this by replacing the <code>.</code> part of our regular expression with the word <code>and</code>."
],
"tests": [
"assert(test==2, 'message: Your <code>regular expression</code> should find two occurrences of the word <code>and</code>.');",
Expand Down

0 comments on commit 9c9e1af

Please sign in to comment.