Merge pull request #2385 from heypano/patch-1

Typo "in any *of* language"
This commit is contained in:
Ilya Kantor 2020-12-13 23:14:30 +03:00 committed by GitHub
commit 23e85b3c33
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,7 +39,7 @@ For instance, if a character has `Letter` property, it means that the character
We can search for characters with a property, written as `pattern:\p{…}`. To use `pattern:\p{…}`, a regular expression must have flag `pattern:u`.
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.
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.
In the example below three kinds of letters will be found: English, Georgian and Korean.