Change "array" to "expression"

This commit is contained in:
neuroevolutus 2023-03-11 20:34:47 -06:00
parent dac9524a80
commit 4ca0f6a7a1
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ This returns `true` if the context contains the passed in parameter, and false o
{% hint style="warning" %}
_Note_ that, just like jq, when checking if an array of strings `contains` another, this will use `contains` and _not_ equals to check each string. This means an array like `contains(["cat"])` will return true for an array `["cats"]`.
_Note_ that, just like jq, when checking if an array of strings `contains` another, this will use `contains` and _not_ equals to check each string. This means an expression like `contains(["cat"])` will return true for an array `["cats"]`.
See the "Array has a subset array" example below on how to check for a subset.

View File

@ -4,7 +4,7 @@ This returns `true` if the context contains the passed in parameter, and false o
{% hint style="warning" %}
_Note_ that, just like jq, when checking if an array of strings `contains` another, this will use `contains` and _not_ equals to check each string. This means an array like `contains(["cat"])` will return true for an array `["cats"]`.
_Note_ that, just like jq, when checking if an array of strings `contains` another, this will use `contains` and _not_ equals to check each string. This means an expression like `contains(["cat"])` will return true for an array `["cats"]`.
See the "Array has a subset array" example below on how to check for a subset.