From 17a118f983c877e6222ad485ac1a288c22243be9 Mon Sep 17 00:00:00 2001 From: Ankit Dwivedi Date: Sat, 4 Feb 2017 07:09:54 -0800 Subject: [PATCH] Added semicolon to end of first statement in challegeSeed for Regular Expressions: Find Characters with Lazy Matching --- .../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 c190e064da..3d228e0c7e 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 @@ -420,7 +420,7 @@ "Fix the regex /<.*>/ to return the HTML tag <h1> and not the text \"<h1>Winter is coming</h1>\". Remember the wildcard . in a regular expression matches any character." ], "challengeSeed": [ - "let text = \"

Winter is coming

\"", + "let text = \"

Winter is coming

\";", "let myRegex = /<.*>/; // Change this line", "let result = text.match(myRegex);" ],