Skip to content

Commit e8fe1e8

Browse files
committed
minor #10084 Fix the YAML syntax highlighting (javiereguiluz)
This PR was merged into the 2.8 branch. Discussion ---------- Fix the YAML syntax highlighting In 3.4 this example doesn't show proper highlighting because of not wrapping some values with quotes. So let's fix it since 2.8, although it's not strictly necessary for 2.8. Commits ------- ebc31ed Fix the YAML syntax highlighting
2 parents a60873b + ebc31ed commit e8fe1e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

console/request_context.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ will override the defaults.
3333
3434
# app/config/parameters.yml
3535
parameters:
36-
router.request_context.host: example.org
37-
router.request_context.scheme: https
38-
router.request_context.base_url: my/path
36+
router.request_context.host: 'example.org'
37+
router.request_context.scheme: 'https'
38+
router.request_context.base_url: 'my/path'
3939
4040
.. code-block:: xml
4141

0 commit comments

Comments
 (0)