Skip to content

Commit 8187776

Browse files
committed
was added -> was introduced
1 parent b0e07b4 commit 8187776

25 files changed

+32
-32
lines changed

book/controller.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ itself.
398398
via the ``container`` property.
399399

400400
.. versionadded:: 2.4
401-
The ``ContainerAwareTrait`` is new in Symfony 2.4.
401+
The ``ContainerAwareTrait`` was introduced in Symfony 2.4.
402402

403403
.. note::
404404

@@ -766,7 +766,7 @@ headers and content that's sent back to the client::
766766
$response->headers->set('Content-Type', 'application/json');
767767

768768
.. versionadded:: 2.4
769-
Support for HTTP status code constants was added in Symfony 2.4.
769+
Support for HTTP status code constants was introduced in Symfony 2.4.
770770

771771
.. tip::
772772

book/from_flat_php_to_symfony2.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ the HTTP response being returned. Use them to improve the blog:
481481
$response->send();
482482

483483
.. versionadded:: 2.4
484-
Support for HTTP status code constants was added in Symfony 2.4.
484+
Support for HTTP status code constants was introduced in Symfony 2.4.
485485

486486
The controllers are now responsible for returning a ``Response`` object.
487487
To make this easier, you can add a new ``render_template()`` function, which,

book/http_cache.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1082,7 +1082,7 @@ Here is how you can configure the Symfony2 reverse proxy to support the
10821082
}
10831083

10841084
.. versionadded:: 2.4
1085-
Support for HTTP status code constants was added in Symfony 2.4.
1085+
Support for HTTP status code constants was introduced in Symfony 2.4.
10861086

10871087
.. caution::
10881088

book/http_fundamentals.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ interface to construct the response that needs to be returned to the client::
285285
$response->send();
286286

287287
.. versionadded:: 2.4
288-
Support for HTTP status code constants was added in Symfony 2.4.
288+
Support for HTTP status code constants was introduced in Symfony 2.4.
289289

290290
If Symfony offered nothing else, you would already have a toolkit for easily
291291
accessing request information and an object-oriented interface for creating

book/internals.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ and set a new ``Exception`` object, or do nothing::
427427
);
428428

429429
.. versionadded:: 2.4
430-
Support for HTTP status code constants was added in Symfony 2.4.
430+
Support for HTTP status code constants was introduced in Symfony 2.4.
431431

432432
.. seealso::
433433

book/testing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ document::
311311
$this->assertTrue($client->getResponse()->isRedirect());
312312

313313
.. versionadded:: 2.4
314-
Support for HTTP status code constants was added with Symfony 2.4.
314+
Support for HTTP status code constants was introduced in Symfony 2.4.
315315

316316
.. index::
317317
single: Tests; Client

components/console/helpers/progresshelper.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Progress Helper
1111
The ``setCurrent`` method was added in Symfony 2.3.
1212

1313
.. versionadded:: 2.4
14-
The ``clear`` method was added in Symfony 2.4.
14+
The ``clear`` method was introduced in Symfony 2.4.
1515

1616
When executing longer-running commands, it may be helpful to show progress
1717
information, which updates as your command runs:

components/console/helpers/tablehelper.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Customize Table Layout using Named Layouts
3333
------------------------------------------
3434

3535
.. versionadded:: 2.4
36-
The ``TableHelper::LAYOUT_COMPACT`` layout was added in Symfony 2.4.
36+
The ``TableHelper::LAYOUT_COMPACT`` layout was introduced in Symfony 2.4.
3737

3838
The Table helper ships with three preconfigured table layouts:
3939

components/debug/class_loader.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Debugging a Class Loader
66
========================
77

88
.. versionadded:: 2.4
9-
The ``DebugClassLoader`` of the Debug component is new in Symfony 2.4.
10-
Previously, it was located in the Class Loader component.
9+
The ``DebugClassLoader`` of the Debug component was introduced in Symfony 2.4.
10+
Previously, it was located in the ClassLoader component.
1111

1212
The :class:`Symfony\\Component\\Debug\\DebugClassLoader` attempts to
1313
throw more helpful exceptions when a class isn't found by the registered

components/dom_crawler.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ Selecting Invalid Choice Values
449449

450450
.. versionadded:: 2.4
451451
The :method:`Symfony\\Component\\DomCrawler\\Form::disableValidation`
452-
method was added in Symfony 2.4.
452+
method was introduced in Symfony 2.4.
453453

454454
By default, choice fields (select, radio) have internal validation activated
455455
to prevent you from setting invalid values. If you want to be able to set

0 commit comments

Comments
 (0)