From 887931008fc5b8594c6a52d59fe8d6f38f1d793f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Sj=C3=B6sten?= Date: Thu, 29 Oct 2015 22:01:43 +0000 Subject: [PATCH 1/2] Fixed typo --- cookbook/event_dispatcher/event_listener.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/event_dispatcher/event_listener.rst b/cookbook/event_dispatcher/event_listener.rst index a6e4c50a2cf..c6a40ce1a07 100644 --- a/cookbook/event_dispatcher/event_listener.rst +++ b/cookbook/event_dispatcher/event_listener.rst @@ -248,7 +248,7 @@ or a "sub request":: Certain things, like checking information on the *real* request, may not need to be done on the sub-request listeners. -Events or Subscribers +Listeners or Subscribers --------------------- Listeners and subscribers can be used in the same application indistinctly. The From 666ad9641b9dd8354e83a6aecf44bb8d69986daa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Sj=C3=B6sten?= Date: Fri, 30 Oct 2015 10:44:02 +0000 Subject: [PATCH 2/2] Added label for old header --- cookbook/event_dispatcher/event_listener.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cookbook/event_dispatcher/event_listener.rst b/cookbook/event_dispatcher/event_listener.rst index c6a40ce1a07..19ceebf755f 100644 --- a/cookbook/event_dispatcher/event_listener.rst +++ b/cookbook/event_dispatcher/event_listener.rst @@ -248,8 +248,10 @@ or a "sub request":: Certain things, like checking information on the *real* request, may not need to be done on the sub-request listeners. +.. _events-or-subscribers: + Listeners or Subscribers ---------------------- +------------------------ Listeners and subscribers can be used in the same application indistinctly. The decision to use either of them is usually a matter of personal taste. However,