From b63711fd8340a3b41de77c78a19c300d5dcbbe88 Mon Sep 17 00:00:00 2001 From: Martin Payne Date: Fri, 2 Nov 2018 21:51:39 -0400 Subject: [PATCH] Changed "match all the upper and lower a" to "match all the upper and lowercase a" (#34171) This is just a simple grammar fix but I feel like upper and lowercase a reads better so it's worth making this change. --- .../match-characters-that-occur-zero-or-more-times.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/match-characters-that-occur-zero-or-more-times.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/match-characters-that-occur-zero-or-more-times.english.md index 210192fedd..e6594d4137 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/match-characters-that-occur-zero-or-more-times.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/match-characters-that-occur-zero-or-more-times.english.md @@ -13,7 +13,7 @@ The character to do this is the asterisk or star: -Create a regex chewieRegex that uses the * character to match all the upper and lower"a" characters in chewieQuote. Your regex does not need flags, and it should not match any of the other quotes. +Create a regex chewieRegex that uses the * character to match all the upper and lowercase "a" characters in chewieQuote. Your regex does not need flags, and it should not match any of the other quotes. ## Tests