diff --git a/README.md b/README.md index a9a1a1a..cae309a 100644 --- a/README.md +++ b/README.md @@ -593,7 +593,7 @@ possible. We can use `?` to match in a lazy way, which means the match should be This becomes even more useful when using the global flag.
-"/(fa.*?at)/g" => The fat cat sat on the mat and another fat cat got jealous.. 
+"/(fa.*?at)/g" => The fat cat sat on the mat and another fat cat got jealous. Without using this the `?` to match in a lazy way it would look like this.