Skip to content

Commit

Permalink
Merge pull request freeCodeCamp#13073 from dnahol/fix/challenge-syntax
Browse files Browse the repository at this point in the history
Added semicolon to Regular Expressions: Match Beginning String Patterns
  • Loading branch information
Greenheart authored Feb 2, 2017
2 parents 6cadffc + d1b1c50 commit 905e033
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@
"Use the <code>caret</code> character in a regex to find <code>\"Cal\"</code> only in the beginning of the string <code>rickyAndCal</code>."
],
"challengeSeed": [
"let rickyAndCal = \"Cal and Ricky both like racing.\"",
"let rickyAndCal = \"Cal and Ricky both like racing.\";",
"let calRegex = /change/; // Change this line",
"let result = calRegex.test(rickyAndCal);"
],
Expand Down

0 comments on commit 905e033

Please sign in to comment.