From e663c9fac64e7b03c4730379ec7f4193d5dec7f1 Mon Sep 17 00:00:00 2001 From: dandanio Date: Tue, 25 Jul 2017 20:27:41 -0400 Subject: [PATCH] Error in example. {2} =/= {2,3} (#10) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6a5e1a1..382451f 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,3}" => 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