Skip to content

Commit df22b75

Browse files
committed
Fixed typo: "inestable" -> "unstable"
1 parent 402f5d4 commit df22b75

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

cookbook/install/inestable_versions

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
How to Install and Use an Inestable Symfony Version
2-
===================================================
1+
How to Install and Use an Unstable Symfony Version
2+
==================================================
33

44
Symfony releases two new minor versions (2.5, 2.6, 2.7, etc.) per year, one in
55
May and one in November (:doc:`see releases detail <contributing/community/releases>`).
@@ -9,8 +9,8 @@ to ensure that they will keep working as expected.
99
In this article you'll learn how to install and use new Symfony versions before
1010
they are released as stable versions.
1111

12-
Creating a New Project Based on an Inestable Symfony Version
13-
------------------------------------------------------------
12+
Creating a New Project Based on an Unstable Symfony Version
13+
-----------------------------------------------------------
1414

1515
Suppose that Symfony 2.7 version hasn't been released yet and you want to create
1616
a new project to test its features. First, :doc:`install Composer </cookbook/composer>`
@@ -32,11 +32,11 @@ option:
3232

3333
$ composer create-project symfony/framework-standard-edition my_project "2.7.*" --stability=beta
3434

35-
Upgrading your Project to an Inestable Symfony Version
36-
------------------------------------------------------
35+
Upgrading your Project to an Unstable Symfony Version
36+
-----------------------------------------------------
3737

3838
Instead of creating a new empty project, in this section you'll update an existing
39-
Symfony application to an inestable framework version. Suppose again that Symfony
39+
Symfony application to an unstable framework version. Suppose again that Symfony
4040
2.7 version hasn't been released yet and you want to test it in your project.
4141

4242
First, open the ``composer.json`` file located in the root directory of your
@@ -53,7 +53,7 @@ dependency:
5353
}
5454

5555
Then, before updating your dependencies, make sure that the project configuration
56-
allows to install inestable versions. If the ``composer.json`` file contains a
56+
allows to install unstable versions. If the ``composer.json`` file contains a
5757
``minimum-stability`` option, change its value to ``dev``. If that option doesn't
5858
exist, add it as follows:
5959

0 commit comments

Comments
 (0)