diff --git a/src/content/docs/ruleset-engine/rules-language/operators.mdx b/src/content/docs/ruleset-engine/rules-language/operators.mdx index 531453d0e9700b..670ac521283c2e 100644 --- a/src/content/docs/ruleset-engine/rules-language/operators.mdx +++ b/src/content/docs/ruleset-engine/rules-language/operators.mdx @@ -45,7 +45,7 @@ The Rules language supports these comparison operators: English C-like - String + String1 IP Number Example (operator in bold) @@ -130,7 +130,7 @@ The Rules language supports these comparison operators: - Wildcard1
(case-insensitive) + Wildcard
(case-insensitive) wildcard ✅ @@ -141,7 +141,7 @@ The Rules language supports these comparison operators: - Strict wildcard1
(case-sensitive) + Strict wildcard
(case-sensitive) strict wildcard ✅ @@ -152,7 +152,7 @@ The Rules language supports these comparison operators: - Matches
regex2 + Matches
regex
2 matches ~ ✅ @@ -179,8 +179,8 @@ The Rules language supports these comparison operators: {/* prettier-ignore */} -1 For more information, refer to [Wildcard matching](#wildcard-matching).
-2 Access to the `matches` operator requires a Cloudflare Business or Enterprise plan. For more information, refer to [Regular expression matching](#regular-expression-matching).
+1 All string operators are case-sensitive unless explicitly stated as case-insensitive, such as the `wildcard` operator.
+2 Access to the `matches` operator requires a Cloudflare Business or Enterprise plan.
3 Currently, not all Cloudflare products support lists in their expressions. For more information on lists, refer to [Inline lists](/ruleset-engine/rules-language/values/#inline-lists) and [Lists](/waf/tools/lists/). :::caution