fix(learn): Updated instructions for challenge solution for Reuse Patterns Using Capture Groups (#40658)

* Grammatically updated the instructions for the challenge

* Update curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/reuse-patterns-using-capture-groups.md

Co-authored-by: Eric Leung <eric@erictleung.com>

Co-authored-by: Eric Leung <eric@erictleung.com>
pull/40754/head
Martin Milani 2021-01-21 00:39:23 -03:00 committed by GitHub
parent 7bd905f393
commit 8e96fef862
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ Using the `.match()` method on a string will return an array with the string it
# --instructions--
Use capture groups in `reRegex` to match numbers that are repeated only three times in a string, each separated by a space.
Use capture groups in `reRegex` to match a string that consists of only the same number repeated exactly three times separated by single spaces.
# --hints--