Skip to content

Commit 519a2d0

Browse files
committed
minor #7050 use single quotes for YAML strings (snoek09)
This PR was merged into the 2.7 branch. Discussion ---------- use single quotes for YAML strings Found some leftover double quoted strings. Commits ------- 70dc9fa use single quotes for YAML strings
2 parents 67aff88 + 70dc9fa commit 519a2d0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

templating/namespaced_paths.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ directory:
4646
twig:
4747
# ...
4848
paths:
49-
"%kernel.root_dir%/../vendor/acme/foo-bar/templates": foo_bar
49+
'%kernel.root_dir%/../vendor/acme/foo-bar/templates': foo_bar
5050
5151
.. code-block:: xml
5252
@@ -103,9 +103,9 @@ specific template doesn't exist.
103103
twig:
104104
# ...
105105
paths:
106-
"%kernel.root_dir%/../vendor/acme/themes/theme1": theme
107-
"%kernel.root_dir%/../vendor/acme/themes/theme2": theme
108-
"%kernel.root_dir%/../vendor/acme/themes/common": theme
106+
'%kernel.root_dir%/../vendor/acme/themes/theme1': theme
107+
'%kernel.root_dir%/../vendor/acme/themes/theme2': theme
108+
'%kernel.root_dir%/../vendor/acme/themes/common': theme
109109
110110
.. code-block:: xml
111111

0 commit comments

Comments
 (0)