From 70b6489e8e8c6c5910ed4a2ce90ef349060325d3 Mon Sep 17 00:00:00 2001 From: cdrainxv Date: Sat, 11 Feb 2017 22:13:15 -0700 Subject: [PATCH] Added semicolon to statement --- .../regular-expressions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/02-javascript-algorithms-and-data-structures/regular-expressions.json b/seed/challenges/02-javascript-algorithms-and-data-structures/regular-expressions.json index 271459da10..c2f6a30704 100644 --- a/seed/challenges/02-javascript-algorithms-and-data-structures/regular-expressions.json +++ b/seed/challenges/02-javascript-algorithms-and-data-structures/regular-expressions.json @@ -365,7 +365,7 @@ "challengeSeed": [ "let difficultSpelling = \"Mississippi\";", "let myRegex = /change/; // Change this line", - "let result = difficultSpelling.match(myRegex)" + "let result = difficultSpelling.match(myRegex);" ], "tests": [ "assert(/\\+/.test(myRegex.source), 'message: Your regex myRegex should use the + sign to match one or more s characters.');",