From 65c7e3ee7e81c20c804955723c343c0218cb3575 Mon Sep 17 00:00:00 2001 From: Roberto Ruccia Date: Tue, 8 Oct 2019 15:52:51 +0200 Subject: [PATCH] Fix typos --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3a5c0557..23a2b86e 100644 --- a/README.md +++ b/README.md @@ -252,7 +252,7 @@ character `e`. In regular expression braces that are also called quantifiers are used to specify the number of times that a character or a group of characters can be repeated. For example, the regular expression `[0-9]{2,3}` means: Match at least -2 digits but not more than 3 ( characters in the range of 0 to 9). +2 digits but not more than 3 (characters in the range of 0 to 9).
 "[0-9]{2,3}" => The number was 9.9997 but we rounded it off to 10.0.
@@ -421,7 +421,7 @@ shorthand character sets are as follows:
 ## 4. Lookaround
 
 Lookbehind and lookahead (also called lookaround) are specific types of
-***non-capturing groups*** (Used to match the pattern but not included in matching
+***non-capturing groups*** (used to match the pattern but not included in matching
 list). Lookarounds are used when we have the condition that this pattern is
 preceded or followed by another certain pattern. For example, we want to get all
 numbers that are preceded by `$` character from the following input string
@@ -578,8 +578,8 @@ at the end of each line in a string.
 [Test the regular expression](https://regex101.com/r/E88WE2/1)
 
 ## 6. Greedy vs lazy matching
-By default regex will do greedy matching , means it will match as long as
-possible. we can use `?` to match in lazy way means as short as possible
+By default regex will do greedy matching which means it will match as long as
+possible. We can use `?` to match in lazy way which means as short as possible.
 
 
 "/(.*at)/" => The fat cat sat on the mat.