Fixed a typo in user_guide/playbooks_conditinals (#72427)

+label: docsite_pr
This commit is contained in:
Kohei Takahashi 2020-11-03 00:04:57 +09:00 committed by GitHub
parent 809d5fc398
commit 2e4038f4d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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