Skip to content

Commit 038caa5

Browse files
committed
Fixed minor issues
1 parent bae8043 commit 038caa5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

cookbook/install/unstable_versions.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ May and one in November (:doc:`see releases detail </contributing/community/rele
66
Testing the new Symfony versions in your projects as soon as possible is important
77
to ensure that they will keep working after upgrading to the new version.
88

9-
In this article you'll learn how to install and use new Symfony versions before
9+
In this article, you'll learn how to install and use new Symfony versions before
1010
they are released as stable versions.
1111

1212
Creating a New Project Based on an Unstable Symfony Version
1313
-----------------------------------------------------------
1414

1515
Suppose that Symfony 2.7 version hasn't been released yet and you want to create
16-
a new project to test its features. First, :doc:`install Composer </cookbook/composer>`
16+
a new project to test its features. First, :doc:`install the Composer </cookbook/composer>`
1717
package manager. Then, open a command console, enter your projects directory and
1818
execute the following command:
1919

@@ -57,7 +57,7 @@ command to update your project dependencies:
5757

5858
.. code-block:: bash
5959
60-
$ composer update
60+
$ composer update symfony/symfony
6161
6262
If you prefer to test a Symfony beta version, replace the ``"2.7.*@dev"`` constraint
6363
by ``"2.7.0-beta1"`` to install a specific beta number or ``2.7.*@beta`` to get
@@ -74,9 +74,9 @@ the most recent beta version.
7474
7575
$ cd projects/my_project/
7676
$ git checkout -b testing_new_symfony
77-
// ... update composer.json configuration
77+
# ... update composer.json configuration
7878
$ composer update
7979
80-
// ... after testing the new Symfony version
80+
# ... after testing the new Symfony version
8181
$ git checkout master
8282
$ git branch -D testing_new_symfony

0 commit comments

Comments
 (0)