Update any.yml (#83588)

* fixed typo in description
* fixed comment in examples
pull/83610/head
Alex Barth 3 months ago committed by GitHub
parent 0eeb933238
commit 506d12de69
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -2,7 +2,7 @@ DOCUMENTATION:
name: any name: any
author: Ansible Core author: Ansible Core
version_added: "2.4" version_added: "2.4"
short_description: is any conditions in a list true short_description: is any condition in a list true
description: description:
- This test checks each condition in a list for truthiness. - This test checks each condition in a list for truthiness.
- Same as the C(any) Python function. - Same as the C(any) Python function.
@ -14,7 +14,7 @@ DOCUMENTATION:
required: True required: True
EXAMPLES: | EXAMPLES: |
varexpression: "{{ 3 == 3 }}" varexpression: "{{ 3 == 3 }}"
# are all statements true? # is any statement true?
{{ [false, booleanvar, varexpression] is any}} {{ [false, booleanvar, varexpression] is any}}
RETURN: RETURN:

Loading…
Cancel
Save