Skip to content

Commit b693927

Browse files
authored
fix: typo
1 parent 7000ede commit b693927

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

9-regular-expressions/03-regexp-unicode/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Let's use it to look for prices in the format "currency, followed by a digit":
142142
```js run
143143
let regexp = /\p{Sc}\d/gu;
144144

145-
let str = `Prices: $2, €1, ¥9`;
145+
let str = `Prices: $2, €1, ¥9`;
146146

147147
alert( str.match(regexp) ); // $2,€1,¥9
148148
```

0 commit comments

Comments
 (0)