Skip to content

Commit b234d9d

Browse files
authored
Merge pull request #197 from hamishknight/fix-syntax
2 parents a4d89ec + 971cccc commit b234d9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Documentation/Evolution/RegexSyntax.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ These groups evaluate the input ahead or behind the current matching position, w
337337
- `(?=`: A lookahead, which matches against the input following the current matching position.
338338
- `(?!`: A negative lookahead, which ensures a negative match against the input following the current matching position.
339339
- `(?<=`: A lookbehind, which matches against the input prior to the current matching position.
340-
- `(?!<`: A negative lookbehind, which ensures a negative match against the input prior to the current matching position.
340+
- `(?<!`: A negative lookbehind, which ensures a negative match against the input prior to the current matching position.
341341

342342
The above groups are all atomic, meaning that they will not be re-evaluated for backtracking. There are however also non-atomic variants:
343343

0 commit comments

Comments
 (0)