From 856681a28d5ae05cacde106d16003d9599a8f112 Mon Sep 17 00:00:00 2001 From: mrdeathless Date: Sat, 17 May 2014 16:43:23 +0300 Subject: [PATCH] Add missing space between var and delimeter --- docsite/rst/playbooks_variables.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/rst/playbooks_variables.rst b/docsite/rst/playbooks_variables.rst index 34bfb85126..8900948ae8 100644 --- a/docsite/rst/playbooks_variables.rst +++ b/docsite/rst/playbooks_variables.rst @@ -93,7 +93,7 @@ And that will provide the most basic form of variable substitution. This is also valid directly in playbooks, and you'll occasionally want to do things like:: - template: src=foo.cfg.j2 dest={{ remote_install_path}}/foo.cfg + template: src=foo.cfg.j2 dest={{ remote_install_path }}/foo.cfg In the above example, we used a variable to help decide where to place a file.