mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Use loop instead of with_items in examples (#47319)
with_items is deprecated
This commit is contained in:
parent
37b013aca3
commit
0b9c033abe
1 changed files with 1 additions and 1 deletions
|
@ -281,7 +281,7 @@ EXAMPLES = r'''
|
|||
win_chocolatey:
|
||||
name: '{{ item }}'
|
||||
state: present
|
||||
with_items:
|
||||
loop:
|
||||
- procexp
|
||||
- putty
|
||||
- windirstat
|
||||
|
|
Loading…
Reference in a new issue