3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-11-26 13:59:47 +01:00

EventDispatcher: clarify just a bit more

This commit is contained in:
Pragmatic Software 2021-07-06 19:13:17 -07:00
parent a1b96b6db6
commit d844d8e36d

View File

@ -105,7 +105,10 @@ sub dispatch_event {
}
}
# return event handler result
# return dispatch result. if at least one event handler returned a defined
# value, then this event is considered handled. if there were no handlers
# or if all of the available handers returned undef then this value will
# be undef.
return $dispatch_result;
}