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.
pull/20035/head^2
Martin Payne 2018-11-02 21:51:39 -04:00 committed by Nishant Mishra
parent 1317c98c22
commit b63711fd83
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ The character to do this is the <code>asterisk</code> or <code>star</code>: <cod
## Instructions
<section id='instructions'>
Create a regex <code>chewieRegex</code> that uses the <code>*</code> character to match all the upper and lower<code>"a"</code> characters in <code>chewieQuote</code>. Your regex does not need flags, and it should not match any of the other quotes.
Create a regex <code>chewieRegex</code> that uses the <code>*</code> character to match all the upper and lowercase <code>"a"</code> characters in <code>chewieQuote</code>. Your regex does not need flags, and it should not match any of the other quotes.
</section>
## Tests