From a82265e883c4ddcb056132952bde0939e71f54d5 Mon Sep 17 00:00:00 2001 From: benmcmahon100 Date: Thu, 6 Aug 2015 14:51:26 +0100 Subject: [PATCH] Fix https://github.com/FreeCodeCamp/freecodecamp/issues/1599 --- challenges/basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/basic-javascript.json b/challenges/basic-javascript.json index 7b74868388..3f92055c6e 100644 --- a/challenges/basic-javascript.json +++ b/challenges/basic-javascript.json @@ -1046,7 +1046,7 @@ "dashedName": "waypoint-invert-regular-expression-matches-with-javaScript", "difficulty":"9.987", "description":[ - "Use /\\S+/gi; to match everything that isn't a space in the string", + "Use /\\S/gi; to match everything that isn't a space in the string", "You can invert any match by using the uppercase version of the selector \\s versus \\S for example" ], "tests":[