From 506d12de69cf706e3f96a8fde5c38a2ac84cd283 Mon Sep 17 00:00:00 2001 From: Alex Barth Date: Mon, 15 Jul 2024 17:05:28 +0200 Subject: [PATCH] Update any.yml (#83588) * fixed typo in description * fixed comment in examples --- lib/ansible/plugins/test/any.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/plugins/test/any.yml b/lib/ansible/plugins/test/any.yml index 42b9182d57e..e30ff22a61b 100644 --- a/lib/ansible/plugins/test/any.yml +++ b/lib/ansible/plugins/test/any.yml @@ -2,7 +2,7 @@ DOCUMENTATION: name: any author: Ansible Core version_added: "2.4" - short_description: is any conditions in a list true + short_description: is any condition in a list true description: - This test checks each condition in a list for truthiness. - Same as the C(any) Python function. @@ -14,7 +14,7 @@ DOCUMENTATION: required: True EXAMPLES: | varexpression: "{{ 3 == 3 }}" - # are all statements true? + # is any statement true? {{ [false, booleanvar, varexpression] is any}} RETURN: