Fix typo in basic-javascript waypoint

Waypoint 'Invert Regular Expression Matches with JavaScript' had a semi-colon in the description for the regex example which is not needed.
closes #3148
This commit is contained in:
Aniruddh Agarwal 2015-09-09 11:52:21 +08:00
parent 410c1f3c3e
commit bb9ceb46f5

View File

@ -1109,7 +1109,7 @@
"title": "Invert Regular Expression Matches with JavaScript",
"difficulty":"9.987",
"description":[
"Use <code>/\\S/gi;</code> to match everything that isn't a space in the string.",
"Use <code>/\\S/gi</code> to match everything that isn't a space in the string.",
"You can invert any match by using the uppercase version of the selector <code>\\s</code> versus <code>\\S</code> for example."
],
"tests":[