From 1f9ad3bf507cb01defa7c40871cd2ac593675ad1 Mon Sep 17 00:00:00 2001 From: allan bailey Date: Tue, 29 Jan 2019 12:37:01 -0800 Subject: [PATCH] grammer fix and changed description to iteratively from recursively. (#50837) --- docs/docsite/rst/user_guide/playbooks_loops.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docsite/rst/user_guide/playbooks_loops.rst b/docs/docsite/rst/user_guide/playbooks_loops.rst index 0ca5b1bd6c6..d924d50695e 100644 --- a/docs/docsite/rst/user_guide/playbooks_loops.rst +++ b/docs/docsite/rst/user_guide/playbooks_loops.rst @@ -141,7 +141,7 @@ Sometimes you would want to retry a task until a certain condition is met. Here retries: 5 delay: 10 -The above example run the shell module recursively till the module's result has "all systems go" in its stdout or the task has +The above example runs the shell module iteratively until the module's result has "all systems go" in its stdout or the task has been retried for 5 times with a delay of 10 seconds. The default value for "retries" is 3 and "delay" is 5. The task returns the results returned by the last task run. The results of individual retries can be viewed by -vv option.