From 4a2948900178a4d0db1335cfca06d6e5254e65bc Mon Sep 17 00:00:00 2001 From: Denis Gorbachev Date: Sat, 24 Nov 2012 15:22:27 +0400 Subject: [PATCH] Fixed a typo --- components/dependency_injection/compilation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/dependency_injection/compilation.rst b/components/dependency_injection/compilation.rst index 1d0d2c4ff16..58d7ce8b8b9 100644 --- a/components/dependency_injection/compilation.rst +++ b/components/dependency_injection/compilation.rst @@ -252,7 +252,7 @@ Creating a Compiler Pass ------------------------ You can also create and register your own compiler passes with the container. -To create a compiler pass it needs to implements the :class:`Symfony\\Component\\DependencyInjection\\Compiler\\CompilerPassInterface` +To create a compiler pass it needs to implement the :class:`Symfony\\Component\\DependencyInjection\\Compiler\\CompilerPassInterface` interface. The compiler pass gives you an opportunity to manipulate the service definitions that have been compiled. This can be very powerful, but is not something needed in everyday use.