Merge pull request #629 from duianto/patch-2

Add missing "the"
This commit is contained in:
Ilya Kantor 2018-11-26 10:57:41 +03:00 committed by GitHub
commit f9bec9f917
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@ An integer number is `pattern:\d+`.
A decimal part is: `pattern:\.\d+`. A decimal part is: `pattern:\.\d+`.
Because the decimal part is optional, let's put it in parentheses with quantifier `pattern:'?'`. Because the decimal part is optional, let's put it in parentheses with the quantifier `pattern:'?'`.
Finally we have the regexp: `pattern:\d+(\.\d+)?`: Finally we have the regexp: `pattern:\d+(\.\d+)?`: