Skip to content

Commit ac793d2

Browse files
authored
use standard indentation (#2005)
1 parent 58659cf commit ac793d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/docsite/rst/playbook_guide/playbooks_variables.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,15 +85,15 @@ If you use a variable without quotes like this:
8585

8686
- hosts: app_servers
8787
vars:
88-
app_path: {{ base_path }}/22
88+
app_path: {{ base_path }}/22
8989

9090
You will see: ``ERROR! Syntax Error while loading YAML.`` If you add quotes, Ansible works correctly:
9191

9292
.. code-block:: yaml+jinja
9393

9494
- hosts: app_servers
9595
vars:
96-
app_path: "{{ base_path }}/22"
96+
app_path: "{{ base_path }}/22"
9797

9898
.. _boolean_variables:
9999

0 commit comments

Comments
 (0)