Fix example

pull/4420/head
Michael DeHaan 2013-03-11 23:37:29 -04:00
parent 444c8943fc
commit df9e716208
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
- hosts: all
tasks:
- shell: echo 'nested test a=${item.0} b=${item.1} c=${item.2}'
- shell: echo "nested test a=${item[0]} b=${item[1]} c=${item[2]}"
with_nested:
- [ 'red', 'blue', 'green' ]
- [ 1, 2, 3 ]