Skip to content

Commit 67bdae4

Browse files
committed
[symfony#2046] Minor syntax and language tweaks
1 parent 54f8557 commit 67bdae4

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

cookbook/workflow/_vendor_deps.rst.inc

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,29 +24,29 @@ To upgrade your libraries to new versions, run ``php composer.phar update``.
2424

2525
.. tip::
2626

27-
If you want to add a new package to your application modify ``composer.json``
27+
If you want to add a new package to your application, modify the ``composer.json``
2828
file:
2929

3030
.. code-block:: json
3131

32-
{
33-
"require": {
34-
...
35-
"doctrine/doctrine-fixtures-bundle": "@dev"
32+
{
33+
"require": {
34+
...
35+
"doctrine/doctrine-fixtures-bundle": "@dev"
36+
}
3637
}
37-
}
3838

39-
and then execute update command for this specific package, i.e.:
39+
and then execute the ``update`` command for this specific package, i.e.:
4040

4141
.. code-block:: bash
4242

43-
$ php composer.phar update doctrine/doctrine-fixtures-bundle
43+
$ php composer.phar update doctrine/doctrine-fixtures-bundle
4444

45-
You can combine both steps into a single command:
45+
You can also combine both steps into a single command:
4646

4747
.. code-block:: bash
4848

49-
$ php composer.phar require doctrine/doctrine-fixtures-bundle:@dev
49+
$ php composer.phar require doctrine/doctrine-fixtures-bundle:@dev
5050

5151
To learn more about Composer, see `GetComposer.org`_:
5252

0 commit comments

Comments
 (0)