fix(challenges): Fixed typo in the challenge (#16991)

changed vowels to letters.

BREAKING CHANGE: none.

Closes #16979
pull/18182/head
Akkshay Lawrence 2018-04-04 00:55:41 +05:30 committed by mstellaluna
parent ff35f2c9c3
commit f9a63ee581
1 changed files with 1 additions and 1 deletions

View File

@ -277,7 +277,7 @@
"<blockquote>let catStr = \"cat\";<br>let batStr = \"bat\";<br>let matStr = \"mat\";<br>let bgRegex = /[a-e]at/;<br>catStr.match(bgRegex); // Returns [\"cat\"]<br>batStr.match(bgRegex); // Returns [\"bat\"]<br>matStr.match(bgRegex); // Returns null</blockquote>",
"<hr>",
"Match all the letters in the string <code>quoteSample</code>.",
"<strong>Note</strong><br>Be sure to match both upper- and lowercase vowels."
"<strong>Note</strong><br>Be sure to match both upper- and lowercase <strong>letters<strong>."
],
"challengeSeed": [
"let quoteSample = \"The quick brown fox jumps over the lazy dog.\";",