docs(letter-space-number): correct grammar

This commit is contained in:
davhojt 2022-05-02 14:44:26 +01:00 committed by Dav Hojt
parent 642af3f9a7
commit ad61eaa0e7
1 changed files with 2 additions and 4 deletions

View File

@ -2,10 +2,8 @@
### Instructions
Make a function called `letterSpaceNumber` that receives a string and returns an
array with every instance of a letter, followed by a space, followed by a number
only if that number has only one digit and is not followed by any letter.
Create a function named `letterSpaceNumber` that accepts a string; returning an array with every instance of a letter, followed by a space, followed by a number, only if that number has only one digit, and is not followed by any letter.
### Notions
- [github.com/ziishaned/learn-regex#3-shorthand-character-sets](https://github.com/ziishaned/learn-regex#3-shorthand-character-sets)
- [RegEx Shorthand Character Sets](https://github.com/ziishaned/learn-regex#3-shorthand-character-sets)