From 011e0176c2930ecff6dbfb2e0b8bca6c5f58b1bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E5=8D=9A=E4=BB=81=28Buo-ren=20Lin=29?= Date: Sun, 12 Jan 2020 00:09:51 +0800 Subject: [PATCH] Clarify the advantage include* statement brought regarding looping (#66022) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: ๆž—ๅšไป(Buo-ren, Lin) --- docs/docsite/rst/user_guide/playbooks_reuse.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docsite/rst/user_guide/playbooks_reuse.rst b/docs/docsite/rst/user_guide/playbooks_reuse.rst index cd527ad18ca..11e7085501e 100644 --- a/docs/docsite/rst/user_guide/playbooks_reuse.rst +++ b/docs/docsite/rst/user_guide/playbooks_reuse.rst @@ -50,7 +50,7 @@ Tradeoffs and Pitfalls Between Includes and Imports Using ``include*`` vs. ``import*`` has some advantages as well as some tradeoffs which users should consider when choosing to use each: -The primary advantage of using ``include*`` statements is looping. When a loop is used with an include, the included tasks or role will be executed once for each item in the loop. +The primary advantage of using ``include*`` statements is the support of looping. When a loop is used with an include, the included tasks or role will be executed once for each item in the loop. Using ``include*`` does have some limitations when compared to ``import*`` statements: