summaryrefslogtreecommitdiff
path: root/system/doc/design_principles/events.xml
diff options
context:
space:
mode:
Diffstat (limited to 'system/doc/design_principles/events.xml')
-rw-r--r--system/doc/design_principles/events.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/system/doc/design_principles/events.xml b/system/doc/design_principles/events.xml
index acd051d411..4d7b34bc70 100644
--- a/system/doc/design_principles/events.xml
+++ b/system/doc/design_principles/events.xml
@@ -227,7 +227,8 @@ ok</pre>
<c>handle_info(Info, State)</c>
must be implemented to handle them. Examples of other
messages are exit messages, if the <c>gen_event</c> is linked to
- other processes (than the supervisor) and trapping exit signals.</p>
+ other processes (than the supervisor, for example via
+ <c>add_sup_handler</c>) and trapping exit signals.</p>
<code type="none">
handle_info({'EXIT', Pid, Reason}, State) ->
..code to handle exits here..