From f19495e50f9f5fa0b84eb460ce4263dea8848563 Mon Sep 17 00:00:00 2001 From: overken <19616043+overken@users.noreply.github.com> Date: Tue, 2 Apr 2019 18:52:24 -0700 Subject: [PATCH] Update article.md typos --- 9-regular-expressions/09-regexp-groups/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/9-regular-expressions/09-regexp-groups/article.md b/9-regular-expressions/09-regexp-groups/article.md index 7efe6885..6b2a17f1 100644 --- a/9-regular-expressions/09-regexp-groups/article.md +++ b/9-regular-expressions/09-regexp-groups/article.md @@ -162,7 +162,7 @@ alert(groups.day); // 30 As you can see, the groups reside in the `.groups` property of the match. -Wee can also use them in replacements, as `pattern:$` (like `$1..9`, but name instead of a digit). +We can also use them in replacements, as `pattern:$` (like `$1..9`, but name instead of a digit). For instance, let's rearrange the date into `day.month.year`: