fixed typo in 08-regexp-greedy-and-lazy

This commit is contained in:
Vladimir 2018-11-06 11:30:37 +03:00 committed by GitHub
parent da0063e450
commit 23c35fa79c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -173,7 +173,7 @@ Complex regular expressions are hard to optimize, so the search may work exactly
## Alternative approach
With regexps, there's often more then one way to do the same thing.
With regexps, there's often more than one way to do the same thing.
In our case we can find quoted strings without lazy mode using the regexp `pattern:"[^"]+"`: