8000 use single quotes for YAML strings by snoek09 · Pull Request #7050 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

use single quotes for YAML strings #7050

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 14, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
use single quotes for YAML strings
  • Loading branch information
Henry Snoek committed Oct 8, 2016
commit 70dc9fa1596608a332e48260e69451066503cf13
8 changes: 4 additions & 4 deletions templating/namespaced_paths.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ directory:
twig:
# ...
paths:
"%kernel.root_dir%/../vendor/acme/foo-bar/templates": foo_bar
'%kernel.root_dir%/../vendor/acme/foo-bar/templates': foo_bar

.. code-block:: xml

Expand Down Expand Up @@ -103,9 +103,9 @@ specific template doesn't exist.
twig:
# ...
paths:
"%kernel.root_dir%/../vendor/acme/themes/theme1": theme
"%kernel.root_dir%/../vendor/acme/themes/theme2": theme
"%kernel.root_dir%/../vendor/acme/themes/common": theme
'%kernel.root_dir%/../vendor/acme/themes/theme1': theme
'%kernel.root_dir%/../vendor/acme/themes/theme2': theme
'%kernel.root_dir%/../vendor/acme/themes/common': theme

.. code-block:: xml

Expand Down
0