From 2e4038f4d209fc9a2aba2c01164ad045dbc65be0 Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Tue, 3 Nov 2020 00:04:57 +0900 Subject: [PATCH] Fixed a typo in user_guide/playbooks_conditinals (#72427) +label: docsite_pr --- docs/docsite/rst/user_guide/playbooks_conditionals.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docsite/rst/user_guide/playbooks_conditionals.rst b/docs/docsite/rst/user_guide/playbooks_conditionals.rst index 76599cb30f3..2a9d359e314 100644 --- a/docs/docsite/rst/user_guide/playbooks_conditionals.rst +++ b/docs/docsite/rst/user_guide/playbooks_conditionals.rst @@ -295,7 +295,7 @@ Ansible expands this at execution time to the equivalent of:: # this task sets a value for x - name: Do the task if "x" is not defined - ansible.builin.debug: + ansible.builtin.debug: var: x when: x is not defined # Ansible skips this task, because x is now defined