Skip to content

Commit fe9635b

Browse files
committed
Fix typo.
1 parent 9543c73 commit fe9635b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

02-regexp-character-classes/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ alert( "CS-4".match(regexp) ); // CS-4
120120
alert( "CS 4".match(regexp) ); // CS 4 (space is also a character)
121121
```
122122

123-
Please note that a dot means "any character", but not the "absense of a character". There must be a character to match it:
123+
Please note that a dot means "any character", but not the "absence of a character". There must be a character to match it:
124124

125125
```js run
126126
alert( "CS4".match(/CS.4/) ); // null, no match because there's no character for the dot

0 commit comments

Comments
 (0)