From bfd456158486f4fd644ce0e2207c7207a9c32214 Mon Sep 17 00:00:00 2001 From: Philipp Rieber Date: Wed, 30 Oct 2013 06:50:19 +0100 Subject: [PATCH] [Components][Event Dispatcher] Fix event name --- components/event_dispatcher/introduction.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/event_dispatcher/introduction.rst b/components/event_dispatcher/introduction.rst index 522e9a89aab..5eb9769ef1b 100644 --- a/components/event_dispatcher/introduction.rst +++ b/components/event_dispatcher/introduction.rst @@ -188,7 +188,7 @@ In many cases, a special ``Event`` subclass that's specific to the given event is passed to the listener. This gives the listener access to special information about the event. Check the documentation or implementation of each event to determine the exact ``Symfony\Component\EventDispatcher\Event`` -instance that's being passed. For example, the ``kernel.event`` event passes an +instance that's being passed. For example, the ``kernel.response`` event passes an instance of ``Symfony\Component\HttpKernel\Event\FilterResponseEvent``:: use Symfony\Component\HttpKernel\Event\FilterResponseEvent;