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
pull/3184/head
Aniruddh Agarwal 2015-09-09 11:52:21 +08:00
parent 90805e1aaa
commit 9067154566
1 changed files with 1 additions and 1 deletions

View File

@ -1109,7 +1109,7 @@
"title": "Invert Regular Expression Matches with JavaScript", "title": "Invert Regular Expression Matches with JavaScript",
"difficulty":"9.987", "difficulty":"9.987",
"description":[ "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." "You can invert any match by using the uppercase version of the selector <code>\\s</code> versus <code>\\S</code> for example."
], ],
"tests":[ "tests":[