Skip to content

Commit 211a358

Browse files
heypanotheBstar
authored andcommitted
Typo "in any *of* language"
1 parent e1f56b3 commit 211a358

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ For instance, if a character has `Letter` property, it means that the character
3939

4040
We can search for characters with a property, written as `pattern:\p{…}`. To use `pattern:\p{…}`, a regular expression must have flag `pattern:u`.
4141

42-
For instance, `\p{Letter}` denotes a letter in any of language. We can also use `\p{L}`, as `L` is an alias of `Letter`. There are shorter aliases for almost every property.
42+
For instance, `\p{Letter}` denotes a letter in any language. We can also use `\p{L}`, as `L` is an alias of `Letter`. There are shorter aliases for almost every property.
4343

4444
In the example below three kinds of letters will be found: English, Georgian and Korean.
4545

0 commit comments

Comments
 (0)