Skip to content

Commit 2fa9f49

Browse files
committed
Add missing backticks in inline snippets
1 parent a1baaf1 commit 2fa9f49

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

components/cache/adapters/redis_adapter.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ Available Options
176176

177177
``redis_cluster`` (type: ``bool``, default: ``false``)
178178
Enables or disables redis cluster. The actual value passed is irrelevant as long as it passes loose comparison
179-
checks: `redis_cluster=1` will suffice.
179+
checks: ``redis_cluster=1`` will suffice.
180180

181181
``redis_sentinel`` (type: ``string``, default: ``null``)
182182
Specifies the master name connected to the sentinels.

components/var_dumper.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ then its dump representation::
391391

392392
.. note::
393393

394-
`#14` is the internal object handle. It allows comparing two
394+
``#14`` is the internal object handle. It allows comparing two
395395
consecutive dumps of the same object.
396396

397397
.. code-block:: php

configuration/secrets.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ manually store this file somewhere and deploy it. There are 2 ways to do that:
250250
.. code-block:: terminal
251251
252252
# this command only gets the value of the key; you must also set an env var
253-
# in your system with this value (e.g. `export SYMFONY_DECRYPTION_SECRET=...`)
253+
# in your system with this value (e.g. ``export SYMFONY_DECRYPTION_SECRET=...``)
254254
$ php -r 'echo base64_encode(require "config/secrets/prod/prod.decrypt.private.php");'
255255
256256
To improve performance (i.e. avoid decrypting secrets at runtime), you can decrypt

0 commit comments

Comments
 (0)