Skip to content

Commit f5f31e8

Browse files
committed
Fix typo
1 parent 383c3db commit f5f31e8

File tree

1 file changed

+1
-1
lines changed
  • 9-regular-expressions/21-regexp-unicode-properties

1 file changed

+1
-1
lines changed

9-regular-expressions/21-regexp-unicode-properties/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ There are also other derived categories, like:
4040
For instance, let's look for a 6-digit hex number:
4141

4242
```js run
43-
let reg = /\p{Hex_Digit}{6}/u; // flag 'u' is requireds
43+
let reg = /\p{Hex_Digit}{6}/u; // flag 'u' is required
4444

4545
alert("color: #123ABC".match(reg)); // 123ABC
4646
```

0 commit comments

Comments
 (0)