Skip to content

Commit f651e96

Browse files
committed
minor
1 parent 5c6a3f0 commit f651e96

File tree

1 file changed

+1
-1
lines changed
  • 9-regular-expressions/05-regexp-character-sets-and-ranges

1 file changed

+1
-1
lines changed

9-regular-expressions/05-regexp-character-sets-and-ranges/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ alert( "Mop top".match(/[tm]op/gi) ); // "Mop", "top"
1515

1616
Please note that although there are multiple characters in the set, they correspond to exactly one character in the match.
1717

18-
So the example above gives no matches:
18+
So the example below gives no matches:
1919

2020
```js run
2121
// find "V", then [o or i], then "la"

0 commit comments

Comments
 (0)