Add spaces around {{ indicators. (#63125)
##### SUMMARY The example looked a little less readable by not having spaces after `{{` and before `}}`. This commit should make the examples match [ansible-lint rule 206](https://github.com/ansible/ansible-lint/blob/master/lib/ansiblelint/rules/VariableHasSpacesRule.py) ##### ISSUE TYPE - Docs Pull Request +label: docsite_pr
This commit is contained in:
parent
5fcaefc012
commit
b7a9d99cef
1 changed files with 2 additions and 2 deletions
|
@ -24,7 +24,7 @@ DOCUMENTATION = """
|
||||||
EXAMPLES = """
|
EXAMPLES = """
|
||||||
- name: "loop through list"
|
- name: "loop through list"
|
||||||
debug:
|
debug:
|
||||||
msg: "An item: {{item}}"
|
msg: "An item: {{ item }}"
|
||||||
with_items:
|
with_items:
|
||||||
- 1
|
- 1
|
||||||
- 2
|
- 2
|
||||||
|
@ -41,7 +41,7 @@ EXAMPLES = """
|
||||||
|
|
||||||
- name: "loop through list from a variable"
|
- name: "loop through list from a variable"
|
||||||
debug:
|
debug:
|
||||||
msg: "An item: {{item}}"
|
msg: "An item: {{ item }}"
|
||||||
with_items: "{{ somelist }}"
|
with_items: "{{ somelist }}"
|
||||||
|
|
||||||
- name: more complex items to add several users
|
- name: more complex items to add several users
|
||||||
|
|
Loading…
Reference in a new issue