diff --git a/doc/pages/regex.asciidoc b/doc/pages/regex.asciidoc index 416efd1f0..d2b0a4344 100644 --- a/doc/pages/regex.asciidoc +++ b/doc/pages/regex.asciidoc @@ -145,7 +145,7 @@ More complex assertions can be expressed with lookarounds: text following the current position. * `(?!...)` is a negative lookahead; it will match if its content does not match the text following the current position. -* `(?<=...)` is a lookbehind; it will match if its content matches +* `(?<=...)` is a lookbehind; it will match if its content matches the text preceding the current position. * `(?