Fix Waypoint: Find Whitespace spelling and grammar.

This commit is contained in:
Logan Tegman
2015-10-06 08:45:21 -07:00
parent 91708a3316
commit a17687116e

View File

@ -1078,11 +1078,11 @@
}, },
{ {
"id":"cf1111c1c12feddfaeb8bdef", "id":"cf1111c1c12feddfaeb8bdef",
"title": "Find White Space with Regular Expressions", "title": "Find Whitespace with Regular Expressions",
"difficulty":"9.986", "difficulty":"9.986",
"description":[ "description":[
"We can also use selectors like <code>\\s</code> to find whitespace in a string.", "We can also use selectors like <code>\\s</code> to find whitespace in a string.",
"The white space characters are <code>\" \"</code> (space), <code>\\r</code> (carriage return), <code>\\n</code> (newline), <code>\\t</code> (tab), <code>\\f</code> (form feed).", "The whitespace characters are <code>\" \"</code> (space), <code>\\r</code> (carriage return), <code>\\n</code> (newline), <code>\\t</code> (tab), and <code>\\f</code> (form feed).",
"It is used like this:", "It is used like this:",
"<code>/\\s+/g</code>", "<code>/\\s+/g</code>",
"Select all the whitespace characters in the sentence string." "Select all the whitespace characters in the sentence string."