diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json
index 7c87c6a530..6e1f22b131 100644
--- a/seed/challenges/basic-javascript.json
+++ b/seed/challenges/basic-javascript.json
@@ -1059,13 +1059,14 @@
},
{
"id":"cf1111c1c12feddfaeb8bdef",
- "title": "Find White Space with Regular Expressions",
+ "title": "Find Whitespace with Regular Expressions",
"difficulty":"9.986",
"description":[
- "We can also use selectors like \\s
to find spaces in a string.",
+ "We can also use selectors like \\s
to find whitespace in a string.",
+ "The whitespace characters are \" \"
(space), \\r
(carriage return), \\n
(newline), \\t
(tab), and \\f
(form feed).",
"It is used like this:",
"/\\s+/g
",
- "Select all the spaces in the sentence string."
+ "Select all the whitespace characters in the sentence string."
],
"tests":[
"assert(test === 7, 'message: Your RegEx should have found seven spaces in the testString
.');",