Skip to content

Commit be52f8f

Browse files
committed
minor #16257 Correct spelling & grammar in 4.4 bundles/ (gnito-org)
This PR was merged into the 4.4 branch. Discussion ---------- Correct spelling & grammar in 4.4 bundles/ <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases 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 `5.x` for features of unreleased versions). --> Commits ------- dad73c3 Correct spelling & grammar in 4.4 bundles/
2 parents e7c23ef + dad73c3 commit be52f8f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bundles/best_practices.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ The ``composer.json`` file should include at least the following metadata:
480480
Consists of the vendor and the short bundle name. If you are releasing the
481481
bundle on your own instead of on behalf of a company, use your personal name
482482
(e.g. ``johnsmith/blog-bundle``). Exclude the vendor name from the bundle
483-
short name and separate each word with an hyphen. For example: AcmeBlogBundle
483+
short name and separate each word with a hyphen. For example: AcmeBlogBundle
484484
is transformed into ``blog-bundle`` and AcmeSocialConnectBundle is
485485
transformed into ``social-connect-bundle``.
486486

bundles/configuration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ bundle in the console using the Yaml format.
332332

333333
As long as your bundle's configuration is located in the standard location
334334
(``YourBundle\DependencyInjection\Configuration``) and does not have
335-
a constructor it will work automatically. If you
335+
a constructor, it will work automatically. If you
336336
have something different, your ``Extension`` class must override the
337337
:method:`Extension::getConfiguration() <Symfony\\Component\\DependencyInjection\\Extension\\Extension::getConfiguration>`
338338
method and return an instance of your ``Configuration``.

bundles/prepend_extension.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ How to Simplify Configuration of Multiple Bundles
88
When building reusable and extensible applications, developers are often
99
faced with a choice: either create a single large bundle or multiple smaller
1010
bundles. Creating a single bundle has the drawback that it's impossible for
11-
users to choose to remove functionality they are not using. Creating multiple
11+
users to remove unused functionality. Creating multiple
1212
bundles has the drawback that configuration becomes more tedious and settings
1313
often need to be repeated for various bundles.
1414

0 commit comments

Comments
 (0)