From 0e49461c92c0f6462bd8b2ccf66203455c7869d7 Mon Sep 17 00:00:00 2001 From: joaquinelio Date: Thu, 10 Jun 2021 00:02:47 -0300 Subject: [PATCH] typpo --- 9-regular-expressions/11-regexp-groups/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/9-regular-expressions/11-regexp-groups/article.md b/9-regular-expressions/11-regexp-groups/article.md index e0ef00bd..796e23f5 100644 --- a/9-regular-expressions/11-regexp-groups/article.md +++ b/9-regular-expressions/11-regexp-groups/article.md @@ -335,7 +335,7 @@ In the example below we only get the name `match:John` as a separate member of t let str = "Gogogo John!"; *!* -// ?: exludes 'go' from capturing +// ?: excludes 'go' from capturing let regexp = /(?:go)+ (\w+)/i; */!*