Skip to content

Commit 74efc83

Browse files
committed
fix
1 parent aee2bd2 commit 74efc83

File tree

1 file changed

+1
-1
lines changed
  • 9-regular-expressions/02-regexp-character-classes

1 file changed

+1
-1
lines changed

9-regular-expressions/02-regexp-character-classes/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ let str = "+7(903)-123-45-67";
100100
alert( str.replace(/\D/g, "") ); // 79031234567
101101
```
102102

103-
## A dot is any character
103+
## A dot is "any character"
104104

105105
A dot `pattern:.` is a special character class that matches "any character except a newline".
106106

0 commit comments

Comments
 (0)