From a0fade797b29d6a1369045468f03c1d343d5473a Mon Sep 17 00:00:00 2001 From: Andrew Lohr Date: Mon, 8 Apr 2019 12:25:03 -0400 Subject: [PATCH] "with in" changed to "within" (#54990) The correct way to write "within" is without a space between "with" and "in" --- docs/docsite/rst/user_guide/playbooks_lookups.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docsite/rst/user_guide/playbooks_lookups.rst b/docs/docsite/rst/user_guide/playbooks_lookups.rst index eef0066c829..99eb3483a78 100644 --- a/docs/docsite/rst/user_guide/playbooks_lookups.rst +++ b/docs/docsite/rst/user_guide/playbooks_lookups.rst @@ -7,7 +7,7 @@ Lookup plugins allow access to outside data sources. Like all templating, these .. note:: - Lookups occur on the local computer, not on the remote computer. - - They are executed with in the directory containing the role or play, as opposed to local tasks which are executed with the directory of the executed script. + - They are executed within the directory containing the role or play, as opposed to local tasks which are executed with the directory of the executed script. - You can pass wantlist=True to lookups to use in jinja2 template "for" loops. - Lookups are an advanced feature. You should have a good working knowledge of Ansible plays before incorporating them.