From 37ecbcb5b520561f8f116bc54f3d9d96c0a9dfba 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/challenges/02-javascript-algorithms-and-data-structures/regular-expressions.json b/challenges/02-javascript-algorithms-and-data-structures/regular-expressions.json index c190e064da..3d228e0c7e 100644 --- a/challenges/02-javascript-algorithms-and-data-structures/regular-expressions.json +++ b/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);" ],