diff --git a/challenges/basic-javascript.json b/challenges/basic-javascript.json
index 213a5f745ed..47790e5e0e1 100644
--- a/challenges/basic-javascript.json
+++ b/challenges/basic-javascript.json
@@ -1078,14 +1078,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 white space in a string.",
- "The white space characters are \" \" (space), \\r (carriage return), \\n (newline), \\t (tab), \\f (form feed).",
+ "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 white space characters in the sentence string."
+ "Select all the whitespace characters in the sentence string."
],
"tests":[
"assert(test === 7, 'Your RegEx should have found seven spaces in the testString.');",