From 8e96fef862f99b28ff29502b3d619368b7bea4fa Mon Sep 17 00:00:00 2001 From: Martin Milani <51199704+martinmilani@users.noreply.github.com> Date: Thu, 21 Jan 2021 00:39:23 -0300 Subject: [PATCH] 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 Co-authored-by: Eric Leung --- .../regular-expressions/reuse-patterns-using-capture-groups.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/reuse-patterns-using-capture-groups.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/reuse-patterns-using-capture-groups.md index b089c7a604..3e574260ce 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/reuse-patterns-using-capture-groups.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/reuse-patterns-using-capture-groups.md @@ -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--