From ec062782040085a3d82dd74da031d815bfc1c11b Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 11 Oct 2016 14:56:42 -0400 Subject: [PATCH] docs: Tweak sentence for interaction of loops + register The previous version had an extra `during a loop` and the comma broke the sentence in the middle weirdly. I think this new version reads better. --- docsite/rst/playbooks_loops.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/rst/playbooks_loops.rst b/docsite/rst/playbooks_loops.rst index fd07483746..f7403b8eb9 100644 --- a/docsite/rst/playbooks_loops.rst +++ b/docsite/rst/playbooks_loops.rst @@ -459,7 +459,7 @@ That's how! Using register with a loop `````````````````````````` -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. +When using ``register`` with a loop, the data structure placed in the variable 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``::