Skip to content

Commit 19e0f37

Browse files
committed
minor #19525 remove $ so gitclip works (tacman)
This PR was submitted for the 7.0 branch but it was merged into the 6.4 branch instead. Discussion ---------- remove $ so gitclip works From github, leaving the $ in will be included when someone is using the "copy" function to the right of the bash/console statements. The $ gets in the way. <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `7.x` for features of unreleased versions). --> Commits ------- c0d24e1 remove $ so gitclip works
2 parents 50e5a0d + c0d24e1 commit 19e0f37

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

bundles/best_practices.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ following standardized instructions in your ``README.md`` file.
292292
Open a command console, enter your project directory and execute:
293293
294294
```console
295-
$ composer require <package-name>
295+
composer require <package-name>
296296
```
297297
298298
Applications that don't use Symfony Flex
@@ -304,7 +304,7 @@ following standardized instructions in your ``README.md`` file.
304304
following command to download the latest stable version of this bundle:
305305
306306
```console
307-
$ composer require <package-name>
307+
composer require <package-name>
308308
```
309309
310310
### Step 2: Enable the Bundle
@@ -333,9 +333,9 @@ following standardized instructions in your ``README.md`` file.
333333
334334
Open a command console, enter your project directory and execute:
335335
336-
.. code-block:: bash
337-
338-
$ composer require <package-name>
336+
```bash
337+
composer require <package-name>
338+
```
339339
340340
Applications that don't use Symfony Flex
341341
----------------------------------------
@@ -346,9 +346,9 @@ following standardized instructions in your ``README.md`` file.
346346
Open a command console, enter your project directory and execute the
347347
following command to download the latest stable version of this bundle:
348348
349-
.. code-block:: terminal
350-
351-
$ composer require <package-name>
349+
```bash
350+
composer require <package-name>
351+
```
352352
353353
Step 2: Enable the Bundle
354354
~~~~~~~~~~~~~~~~~~~~~~~~~

0 commit comments

Comments
 (0)