We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 383c3db commit f5f31e8Copy full SHA for f5f31e8
9-regular-expressions/21-regexp-unicode-properties/article.md
@@ -40,7 +40,7 @@ There are also other derived categories, like:
40
For instance, let's look for a 6-digit hex number:
41
42
```js run
43
-let reg = /\p{Hex_Digit}{6}/u; // flag 'u' is requireds
+let reg = /\p{Hex_Digit}{6}/u; // flag 'u' is required
44
45
alert("color: #123ABC".match(reg)); // 123ABC
46
```
0 commit comments