Skip to content

Commit

Permalink
regex: fix typo in README.md (#19201)
Browse files Browse the repository at this point in the history
  • Loading branch information
KeitoTobi1 committed Aug 22, 2023
1 parent 644c68c commit b6c7104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vlib/regex/README.md
Expand Up @@ -169,7 +169,7 @@ match too, finally test the token `c`.
> Two char classes with an `OR` in the middle is a syntax error.
That also means, that a query string like `abc|bde` is not equal to
`(abc)|(bde)`, but instead to `ab(c|b)de.
`(abc)|(bde)`, but instead to `ab(c|b)de`.
The OR operation works only for `c|b`, not at char concatenation level.

### Groups
Expand Down

0 comments on commit b6c7104

Please sign in to comment.