From 6432a5e4a95f21209cd9ed2f13cb59d631e4a877 Mon Sep 17 00:00:00 2001 From: Mohammad Rajabifard Date: Thu, 6 Jul 2017 15:51:17 +0430 Subject: [PATCH] Add missing charachter --- .../05-regexp-character-sets-and-ranges/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/5-regular-expressions/05-regexp-character-sets-and-ranges/article.md b/5-regular-expressions/05-regexp-character-sets-and-ranges/article.md index 01748937..90c890c7 100644 --- a/5-regular-expressions/05-regexp-character-sets-and-ranges/article.md +++ b/5-regular-expressions/05-regexp-character-sets-and-ranges/article.md @@ -97,7 +97,7 @@ In other words, all special characters are allowed except where they mean someth A dot `"."` inside square brackets means just a dot. The pattern `pattern:[.,]` would look for one of characters: either a dot or a comma. -In the example below the regexp `pattern:[-().^+]` looks for one of the characters `-().^`: +In the example below the regexp `pattern:[-().^+]` looks for one of the characters `-().^+`: ```js run // No need to escape