mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #5558 from reagent/doc-fix
Fix typo in loop documentation: strucutre -> structure
This commit is contained in:
commit
fb30ce090b
1 changed files with 2 additions and 2 deletions
|
@ -320,7 +320,7 @@ That's how!
|
|||
Using register with a loop
|
||||
``````````````````````````
|
||||
|
||||
When using ``register`` with a loop the data strucutre placed in the variable during a loop, will contain a ``results`` attribute, that is a list of all responses from the module.
|
||||
When using ``register`` with a loop the data structure placed in the variable during a loop, will contain a ``results`` attribute, that is a list of all responses from the module.
|
||||
|
||||
Here is an example of using ``register`` with ``with_items``::
|
||||
|
||||
|
@ -330,7 +330,7 @@ Here is an example of using ``register`` with ``with_items``::
|
|||
- two
|
||||
register: echo
|
||||
|
||||
This differs from the data strucutre returned when using ``register`` without a loop::
|
||||
This differs from the data structure returned when using ``register`` without a loop::
|
||||
|
||||
{
|
||||
"changed": true,
|
||||
|
|
Loading…
Reference in a new issue