From 54bdb53eae1db138fffa6353b232f945df4e20b4 Mon Sep 17 00:00:00 2001 From: shadow3x3x3 Date: Wed, 18 Dec 2024 15:39:32 +0800 Subject: [PATCH] docs: fix case-insensitive regex typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 476a4f3..f9e136e 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ Each expression is an array table which has three or four elements: |`<` |less than |`["arg_ttl", "<", 3600]`| |`<=` |less than or equal to|`["arg_ttl", "<=", 3600]`| |`~~` |match [RegEx](https://www.pcre.org)|`["arg_env", "~~", "[Dd]ev"]`| -|`~*` |match [RegEx](https://www.pcre.org) (case-insensitive) |`["arg_env", "~~", "dev"]`| +|`~*` |match [RegEx](https://www.pcre.org) (case-insensitive) |`["arg_env", "~*", "dev"]`| |`in` |exist in the right-hand side|`["arg_version", "in", ["v1","v2"]]`| |`has` |contain item in the right-hand side|`["graphql_root_fields", "has", "owner"]`| |`!` |reverse the adjacent operator|`["arg_env", "!", "~~", "[Dd]ev"]`|