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