From bf12d8772998bbf7245b6d43d497942fd54e74d2 Mon Sep 17 00:00:00 2001 From: Tim Dinh Date: Tue, 25 Jul 2017 14:07:48 +0200 Subject: [PATCH] Fixed an example highlight --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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