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>
This commit is contained in:
Martin Milani
2021-01-21 00:39:23 -03:00
committed by GitHub
parent 7bd905f393
commit 8e96fef862

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--