From b6c7104d9e7965c12807b316f3e0944d331f7a1b Mon Sep 17 00:00:00 2001 From: Keito Tobichi Date: Tue, 22 Aug 2023 20:24:53 +0900 Subject: [PATCH] regex: fix typo in README.md (#19201) --- vlib/regex/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/regex/README.md b/vlib/regex/README.md index 4cc5c7ac4ab36b..27b1e71c91e24d 100644 --- a/vlib/regex/README.md +++ b/vlib/regex/README.md @@ -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