From eafa139f77f8f3cb32dffbc8ad0bad7a595ba5ab Mon Sep 17 00:00:00 2001 From: Luca Steinke <43927820+lucasteinke@users.noreply.github.com> Date: Tue, 30 Sep 2025 17:18:38 +0200 Subject: [PATCH] fix description of truthy test (#85911) There's a "not" too much here. Maybe further examples can be found. --- lib/ansible/plugins/test/truthy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/plugins/test/truthy.yml b/lib/ansible/plugins/test/truthy.yml index d4459094676..57d7864e4b7 100644 --- a/lib/ansible/plugins/test/truthy.yml +++ b/lib/ansible/plugins/test/truthy.yml @@ -20,5 +20,5 @@ EXAMPLES: | thisisfalse: '{{ "" is truthy }}' RETURN: _value: - description: Returns V(True) if the condition is not "Python truthy", V(False) otherwise. + description: Returns V(True) if the condition is "Python truthy", V(False) otherwise. type: boolean