👾 fix typo

This commit is contained in:
Lavrentiy Rubtsov 2022-06-07 17:29:50 +06:00 committed by GitHub
parent 2efe0dce18
commit 61888a265d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,7 +26,7 @@ As you can see, there's only lookbehind part in this regexp.
It works like this:
- At every position in the text.
- Check if it's preceeded by `pattern:<body.*?>`.
- Check if it's preceded by `pattern:<body.*?>`.
- If it's so then we have the match.
The tag `pattern:<body.*?>` won't be returned. The result of this regexp is literally an empty string, but it matches only at positions preceeded by `pattern:<body.*?>`.