Skip to content

Commit 3f3138f

Browse files
committed
minor #12631 fix some issues (OskarStark)
This PR was merged into the 3.4 branch. Discussion ---------- fix some issues <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/roadmap for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `master` for features of unreleased versions). --> Commits ------- 4b43d7c fix some issues
2 parents a6c2ea9 + 4b43d7c commit 3f3138f

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

components/class_loader/class_loader.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ is straightforward::
2626

2727
$loader = new ClassLoader();
2828

29-
// to enable searching the include path (eg. for PEAR packages)
29+
// to enable searching the include path (e.g. for PEAR packages)
3030
$loader->setUseIncludePath(true);
3131

3232
// ... register namespaces and prefixes here - see below

contributing/code/conventions.rst

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

9898
A new method cannot be introduced as deprecated.
9999

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

103103
/**

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
~~~~~~~~~~~~~~~~~~~~~~

reference/dic_tags.rst

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

11111111
/**
1112-
* Extracts translation messages from a template directory to the catalogue.
1112+
* Extracts translation messages from a template directory to the catalog.
11131113
*/
1114-
public function extract($directory, MessageCatalogue $catalogue)
1114+
public function extract($directory, MessageCatalogue $catalog)
11151115
{
11161116
// ...
11171117
}

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.
1212

1313
Thanks to the messages extractors, the command will detect the translation

0 commit comments

Comments
 (0)