Add missing "the"

This commit is contained in:
duianto 2018-11-21 18:45:54 +01:00 committed by GitHub
parent 924ec1e19f
commit e71701603e
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+`.
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+)?`: