Skip to content

Commit b3371f7

Browse files
committed
Merge branch '4.4'
* 4.4: Update simple-example.rst fix some issues
2 parents 0330a08 + cb5c807 commit b3371f7

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

contributing/code/conventions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ contain deprecated methods.
9696

9797
A new method cannot be introduced as deprecated.
9898

99-
A feature is marked as deprecated by adding a ``@deprecated`` PHPdoc to
99+
A feature is marked as deprecated by adding a ``@deprecated`` PHPDoc to
100100
relevant classes, methods, properties, ...::
101101

102102
/**

contributing/code/maintenance.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ acceptable changes.
1313

1414
.. note::
1515

16-
When documentation (or phpdoc) is not in sync with the code, code behavior
16+
When documentation (or PHPDoc) is not in sync with the code, code behavior
1717
should always be considered as being the correct one.
1818

1919
Besides bug fixes, other minor changes can be accepted in a patch version:

form/type_guesser.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ With this knowledge, you can implement the ``guessType()`` method of the
146146
}
147147

148148
This type guesser can now guess the field type for a property if it has
149-
PHPdoc!
149+
PHPDoc!
150150

151151
Guessing Field Options
152152
~~~~~~~~~~~~~~~~~~~~~~

frontend/encore/simple-example.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,8 @@ you need them:
269269
+ {% endblock %}
270270
271271
Now, the checkout page will contain all the JavaScript and CSS for the ``app`` entry
272-
(because this is included in ``base.html.twig``) *and* your ``checkout`` entry.
272+
(because this is included in ``base.html.twig`` and there is the ``{{ parent() }}`` call)
273+
*and* your ``checkout`` entry.
273274

274275
See :doc:`/frontend/encore/page-specific-assets` for more details. To avoid duplicating
275276
the same code in different entry files, see :doc:`/frontend/encore/split-chunks`.

reference/dic_tags.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -894,9 +894,9 @@ required option: ``alias``, which defines the name of the extractor::
894894
protected $prefix;
895895

896896
/**
897-
* Extracts translation messages from a template directory to the catalogue.
897+
* Extracts translation messages from a template directory to the catalog.
898898
*/
899-
public function extract($directory, MessageCatalogue $catalogue)
899+
public function extract($directory, MessageCatalogue $catalog)
900900
{
901901
// ...
902902
}

translation/debug.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ How to Find Missing or Unused Translation Messages
77
==================================================
88

99
When maintaining an application or bundle, you may add or remove translation
10-
messages and forget to update the message catalogues. The ``debug:translation``
10+
messages and forget to update the message catalogs. The ``debug:translation``
1111
command helps you to find these missing or unused translation messages templates:
1212

1313
.. code-block:: twig

0 commit comments

Comments
 (0)