diff --git a/README.md b/README.md index 94a3f1b..689ced4 100644 --- a/README.md +++ b/README.md @@ -180,7 +180,7 @@ character can be repeated. For example the regular expression `[0-9]{2,3}` means characters in the range of 0 to 9).
-"[0-9]{2}" => The number was 9.9997 but we rounded it off to 10.0.
+"[0-9]{2}" => The number was 9.9997 but we rounded it off to 10.0.
 
We can leave out the second number. For example the regular expression `[0-9]{2,}` means: Match 2 or more digits. If we also remove