regex: fix typo in README.md (#19201)

This commit is contained in:
Keito Tobichi 2023-08-22 20:24:53 +09:00 committed by GitHub
parent 644c68ce94
commit b6c7104d9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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