Merge pull request #2621 from leviding/patch-36

FIX: The range of hexadecimal numbers is 0-9 or A-F
This commit is contained in:
Ilya Kantor 2021-06-13 10:47:51 +03:00 committed by GitHub
commit 581117ffe0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -107,7 +107,7 @@ Unicode supports many different properties, their full list would require a lot
### Example: hexadecimal numbers
For instance, let's look for hexadecimal numbers, written as `xFF`, where `F` is a hex digit (0..1 or A..F).
For instance, let's look for hexadecimal numbers, written as `xFF`, where `F` is a hex digit (0..9 or A..F).
A hex digit can be denoted as `pattern:\p{Hex_Digit}`: