Skip to content

Commit d06bf10

Browse files
committed
fixed Backward Compatibility typo
1 parent 0607517 commit d06bf10

File tree

8 files changed

+21
-21
lines changed

8 files changed

+21
-21
lines changed

console/verbosity.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ verbosity levels::
6666
These semantic methods are defined in the ``OutputInterface`` starting from
6767
Symfony 3.0. In previous Symfony versions they are defined in the different
6868
implementations of the interface (e.g. :class:`Symfony\\Component\\Console\\Output\\Output`)
69-
in order to keep backwards compatibility.
69+
in order to keep backward compatibility.
7070

7171
When the quiet level is used, all output is suppressed as the default
7272
:method:`Symfony\\Component\\Console\\Output\\Output::write` method returns

contributing/code/bc.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
Our Backwards Compatibility Promise
2-
===================================
1+
Our Backward Compatibility Promise
2+
==================================
33

44
Ensuring smooth upgrades of your projects is our first priority. That's why
5-
we promise you backwards compatibility (BC) for all minor Symfony releases.
5+
we promise you backward compatibility (BC) for all minor Symfony releases.
66
You probably recognize this strategy as `Semantic Versioning`_. In short,
77
Semantic Versioning means that only major releases (such as 2.0, 3.0 etc.) are
8-
allowed to break backwards compatibility. Minor releases (such as 2.5, 2.6 etc.)
8+
allowed to break backward compatibility. Minor releases (such as 2.5, 2.6 etc.)
99
may introduce new features, but must do so without breaking the existing API of
1010
that release branch (2.x in the previous example).
1111

@@ -14,7 +14,7 @@ that release branch (2.x in the previous example).
1414
This promise was introduced with Symfony 2.3 and does not apply to previous
1515
versions of Symfony.
1616

17-
However, backwards compatibility comes in many different flavors. In fact, almost
17+
However, backward compatibility comes in many different flavors. In fact, almost
1818
every change that we make to the framework can potentially break an application.
1919
For example, if we add a new method to a class, this will break an application
2020
which extended this class and added the same method, but with a different
@@ -54,10 +54,10 @@ sticks to these rules.
5454
If you implement an interface, we promise that we won't ever break your code.
5555

5656
The following table explains in detail which use cases are covered by our
57-
backwards compatibility promise:
57+
backward compatibility promise:
5858

5959
+-----------------------------------------------+-----------------------------+
60-
| Use Case | Backwards Compatibility |
60+
| Use Case | Backward Compatibility |
6161
+===============================================+=============================+
6262
| **If you...** | **Then we guarantee BC...** |
6363
+-----------------------------------------------+-----------------------------+
@@ -88,10 +88,10 @@ public methods and properties.
8888
not be accessed by your own code.
8989

9090
To be on the safe side, check the following table to know which use cases are
91-
covered by our backwards compatibility promise:
91+
covered by our backward compatibility promise:
9292

9393
+-----------------------------------------------+-----------------------------+
94-
| Use Case | Backwards Compatibility |
94+
| Use Case | Backward Compatibility |
9595
+===============================================+=============================+
9696
| **If you...** | **Then we guarantee BC...** |
9797
+-----------------------------------------------+-----------------------------+

contributing/community/releases.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,10 +140,10 @@ Version Feature Freeze Release End of Maintenance End of Life
140140
.. [2] Symfony 2.8 is the last version of the Symfony 2.x branch.
141141
.. [3] Symfony 3.0 is the first version to use the new release process based on five minor releases.
142142
143-
Backwards Compatibility
144-
-----------------------
143+
Backward Compatibility
144+
----------------------
145145

146-
Our :doc:`Backwards Compatibility Promise </contributing/code/bc>` is very
146+
Our :doc:`Backward Compatibility Promise </contributing/code/bc>` is very
147147
strict and allows developers to upgrade with confidence from one minor version
148148
of Symfony to the next one.
149149

contributing/community/reviews.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ status:
2222
* **Pull Requests**: Pull requests contain code that fixes a bug or implements
2323
new functionality. Reviews of pull requests ensure that they are implemented
2424
properly, are covered by test cases, don't introduce new bugs and maintain
25-
backwards compatibility.
25+
backward compatibility.
2626

2727
Note that **anyone who has some basic familiarity with Symfony and PHP can
2828
review bug reports and pull requests**. You don't need to be an expert to help.
@@ -140,12 +140,12 @@ Pick a pull request from the `PRs in need of review`_ and follow these steps:
140140
* Does the PR contain automated tests? Do those tests cover all relevant
141141
edge cases?
142142
* Does the PR contain sufficient comments to easily understand its code?
143-
* Does the code break backwards compatibility? If yes, does the PR header say
143+
* Does the code break backward compatibility? If yes, does the PR header say
144144
so?
145145
* Does the PR contain deprecations? If yes, does the PR header say so? Does
146146
the code contain ``trigger_error()`` statements for all deprecated
147147
features?
148-
* Are all deprecations and backwards compatibility breaks documented in the
148+
* Are all deprecations and backward compatibility breaks documented in the
149149
latest UPGRADE-X.X.md file? Do those explanations contain "Before"/"After"
150150
examples with clear upgrade instructions?
151151

contributing/map.rst.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* :doc:`The Core Team </contributing/code/core_team>`
88
* :doc:`Security </contributing/code/security>`
99
* :doc:`Tests </contributing/code/tests>`
10-
* :doc:`Backwards Compatibility </contributing/code/bc>`
10+
* :doc:`Backward Compatibility </contributing/code/bc>`
1111
* :doc:`Coding Standards</contributing/code/standards>`
1212
* :doc:`Code Conventions</contributing/code/conventions>`
1313
* :doc:`Git</contributing/code/git>`

setup/bundles.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Upgrading a Third-Party Bundle for a Major Symfony Version
55
==========================================================
66

77
Symfony 3 was released on November 2015. Although this version doesn't contain
8-
any new features, it removes all the backwards compatibility layers included in
8+
any new features, it removes all the backward compatibility layers included in
99
the previous 2.8 version. If your bundle uses any deprecated feature and it's
1010
published as a third-party bundle, applications upgrading to Symfony 3 will no
1111
longer be able to use it.

setup/upgrade_major.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Upgrading a Major Version (e.g. 2.7.0 to 3.0.0)
66

77
Every two years, Symfony releases a new major version release (the first number
88
changes). These releases are the trickiest to upgrade, as they are allowed to
9-
break backwards compatibility. However, Symfony makes this upgrade process as
9+
break backward compatibility. However, Symfony makes this upgrade process as
1010
smooth as possible.
1111

1212
This means that you can update most of your code before the major release is

setup/upgrade_minor.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Upgrading a Minor Version (e.g. 2.5.3 to 2.6.1)
55
===============================================
66

77
If you're upgrading a minor version (where the middle number changes), then
8-
you should *not* encounter significant backwards compatibility changes. For
9-
details, see the :doc:`Symfony backwards compatibility promise </contributing/code/bc>`.
8+
you should *not* encounter significant backward compatibility changes. For
9+
details, see the :doc:`Symfony backward compatibility promise </contributing/code/bc>`.
1010

1111
However, some backwards-compatibility breaks *are* possible and you'll learn in
1212
a second how to prepare for them.

0 commit comments

Comments
 (0)