Skip to content

Commit c55c5ae

Browse files
committed
fix
1 parent 74efc83 commit c55c5ae

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
@@ -128,7 +128,7 @@ alert( "CS4".match(/CS.4/) ); // null, no match because there's no character for
128128

129129
### Dot as literally any character with "s" flag
130130

131-
Usually a dot doesn't match a newline character `\n`.
131+
By default, a dot doesn't match the newline character `\n`.
132132

133133
For instance, the regexp `pattern:A.B` matches `match:A`, and then `match:B` with any character between them, except a newline `\n`:
134134

0 commit comments

Comments
 (0)