Merge pull request #219 from Hobinx/patch-2

Fix typo
This commit is contained in:
Ilya Kantor 2017-09-27 15:16:17 +03:00 committed by GitHub
commit 5249604598

View file

@ -121,7 +121,7 @@ What happen during the search of `pattern:(\d+)*$` in the line `subject:12345678
\d+.......
(123456789)z
```
2. Then it tries to apply the start around the parentheses `pattern:(\d+)*`, but there are no more digits, so it the star doesn't give anything.
2. Then it tries to apply the star around the parentheses `pattern:(\d+)*`, but there are no more digits, so it the star doesn't give anything.
Then the pattern has the string end anchor `pattern:$`, and in the text we have `subject:z`.