From aa7b00c258379599e479591580bffefcca70f571 Mon Sep 17 00:00:00 2001 From: dandanio Date: Tue, 25 Jul 2017 17:20:10 -0400 Subject: [PATCH] Error in example. {2} =/= {2,3} --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 94a3f1b..f4e435f 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 @@ -433,4 +433,4 @@ line. And beacause of `m` flag now regular expression engine matches pattern at ## License -MIT © [Zeeshan Ahmed](mailto:ziishaned@gmail.com) \ No newline at end of file +MIT © [Zeeshan Ahmed](mailto:ziishaned@gmail.com)