Skip to content

Commit 86cf8bf

Browse files
committed
Merge pull request #1792 from greg0ire/fix_typo
Various fixes on the dependency injection component documentation.
2 parents 2c6ab3b + d3a157a commit 86cf8bf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

components/dependency_injection/compilation.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ will then be called when the container is compiled::
287287

288288
.. note::
289289

290-
Compiler passes are registered differently is you are using the full
290+
Compiler passes are registered differently if you are using the full
291291
stack framework, see :doc:`/cookbook/service_container/compiler_passes`
292292
for more details.
293293

@@ -408,7 +408,7 @@ but getting an up to date configuration whilst developing your application::
408408
This could be further improved by only recompiling the container in debug
409409
mode when changes have been made to its configuration rather than on every
410410
request. This can be done by caching the resource files used to configure
411-
the container in the way describe in ":doc:`/components/config/caching`"
411+
the container in the way described in ":doc:`/components/config/caching`"
412412
in the config component documentation.
413413

414414
You do not need to work out which files to cache as the container builder

components/dependency_injection/workflow.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Bundle-level Configuration with Extensions
5151

5252
By convention, each bundle contains an Extension class which is in the bundle's
5353
``DependencyInjection`` directory. These are registered with the ``ContainerBuilder``
54-
when the kernel is booted. When the ``ContainerBuilder`` is :doc:`/compiled<components/dependency-injection/compilation>`,
54+
when the kernel is booted. When the ``ContainerBuilder`` is :doc:`compiled</components/dependency-injection/compilation>`,
5555
the application-level configuration relevant to the bundle's extension is
5656
passed to the Extension which also usually loads its own config file(s), typically from the bundle's
5757
``Resources/config`` directory. The application-level config is usually processed
@@ -63,7 +63,7 @@ Compiler passes to allow Interaction between Bundles
6363

6464
:ref:`Compiler passes<components-dependency-injection-compiler-passes>` are
6565
used to allow interaction between different bundles as they cannot affect
66-
each others configuration in the extension classes. One of the main uses is
66+
each other's configuration in the extension classes. One of the main uses is
6767
to process tagged services, allowing bundles to register services to picked
6868
up by other bundles, such as Monolog loggers, Twig extensions and Data Collectors
6969
for the Web Profiler. Compiler passes are usually placed in the bundle's

0 commit comments

Comments
 (0)