From 26f798f098552e39ef4d5dbd7c3164e113dd3cfe Mon Sep 17 00:00:00 2001 From: Graham Reynolds Date: Sat, 22 Nov 2025 21:51:23 +1000 Subject: [PATCH] Reworded contains_any and includes_any --- content/collections/docs/conditional-fields.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/collections/docs/conditional-fields.md b/content/collections/docs/conditional-fields.md index 00b923fc4..9792e9a32 100644 --- a/content/collections/docs/conditional-fields.md +++ b/content/collections/docs/conditional-fields.md @@ -192,7 +192,8 @@ Available operators include: | `<` | Less than comparison. | | `<=` | Less than or equal to comparison. | | `contains` `includes` | Check if array contains a value, or if a string contains a sub-string value. | -| `contains_any` `includes_any` | Check if array contains any of a comma-separated list of values, or if a string contains any of a comma-separated list of sub-strings values. | +| `contains_any` | Check if any of a comma-separated list of values is contained in an array or string (also matches sub-strings). | +| `includes_any` | Check if any of a comma-separated list of values is included in an array or matches a string exactly. | Available right-hand-side literals/options include: