From aad82d4ed620736796ed8faf8ced9fed87a66ec5 Mon Sep 17 00:00:00 2001 From: Douglas Greenshields Date: Wed, 13 Nov 2013 19:02:43 +0000 Subject: [PATCH] add clarification for order in which event listeners will be executed Clearing up ambiguity (are event listeners executed in priority or number order?). --- cookbook/service_container/event_listener.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/service_container/event_listener.rst b/cookbook/service_container/event_listener.rst index 7e0b5410f79..e36c5cd660e 100644 --- a/cookbook/service_container/event_listener.rst +++ b/cookbook/service_container/event_listener.rst @@ -91,7 +91,7 @@ using a special "tag": There is an additional tag option ``priority`` that is optional and defaults to 0. This value can be from -255 to 255, and the listeners will be executed - in the order of their priority. This is useful when you need to guarantee + in the order of their priority (highest to lowest). This is useful when you need to guarantee that one listener is executed before another. Request events, checking types