From f651e963d744cfb3ddc49858a90c078d8656a370 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Sun, 19 May 2019 23:10:51 +0300 Subject: [PATCH] minor --- .../05-regexp-character-sets-and-ranges/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/9-regular-expressions/05-regexp-character-sets-and-ranges/article.md b/9-regular-expressions/05-regexp-character-sets-and-ranges/article.md index 5c8a8bab..6a9182b8 100644 --- a/9-regular-expressions/05-regexp-character-sets-and-ranges/article.md +++ b/9-regular-expressions/05-regexp-character-sets-and-ranges/article.md @@ -15,7 +15,7 @@ alert( "Mop top".match(/[tm]op/gi) ); // "Mop", "top" Please note that although there are multiple characters in the set, they correspond to exactly one character in the match. -So the example above gives no matches: +So the example below gives no matches: ```js run // find "V", then [o or i], then "la"