aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoffix Znet <cpan@zoffix.com>2016-07-28 22:57:16 -0400
committerZoffix Znet <cpan@zoffix.com>2016-07-28 22:57:16 -0400
commit9959759678caee2ffec82b690ec877577b79756c (patch)
tree0f5bcf1d1d38385d89ad3a121857bc3266a6a9c4
parent90e66335f345e78296c98024c67c46cf8e9d5246 (diff)
List irc-all in the chart
-rw-r--r--docs/02-event-reference.md27
1 files changed, 13 insertions, 14 deletions
diff --git a/docs/02-event-reference.md b/docs/02-event-reference.md
index 62f89d6..015eec7 100644
--- a/docs/02-event-reference.md
+++ b/docs/02-event-reference.md
@@ -30,28 +30,27 @@ that the returned value from the event handler should be discarded.
## Event Map
-All event chains end with `irc-all`, which is not shown in the table below,
-for brevity. `irc-XXX` stands for numeric events where `XXX` is a
+In the chart below, `irc-XXX` stands for numeric events where `XXX` is a
three-digit number. See [this numerics
table](https://www.alien.net.au/irc/irc2numerics.html) for meaning of codes,
depending on the server used.
```
-irc-addressed ▶ irc-to-me ▶ irc-privmsg-channel ▶ irc-privmsg
- irc-mentioned ▶ irc-privmsg-channel ▶ irc-privmsg
- irc-privmsg-channel ▶ irc-privmsg
- irc-to-me ▶ irc-privmsg-me ▶ irc-privmsg
+irc-addressed ▶ irc-to-me ▶ irc-privmsg-channel ▶ irc-privmsg ▶ irc-all
+ irc-mentioned ▶ irc-privmsg-channel ▶ irc-privmsg ▶ irc-all
+ irc-privmsg-channel ▶ irc-privmsg ▶ irc-all
+ irc-to-me ▶ irc-privmsg-me ▶ irc-privmsg ▶ irc-all
-irc-addressed ▶ irc-to-me ▶ irc-notice-channel ▶ irc-notice
- irc-mentioned ▶ irc-notice-channel ▶ irc-notice
- irc-notice-channel ▶ irc-notice
- irc-to-me ▶ irc-notice-me ▶ irc-notice
+irc-addressed ▶ irc-to-me ▶ irc-notice-channel ▶ irc-notice ▶ irc-all
+ irc-mentioned ▶ irc-notice-channel ▶ irc-notice ▶ irc-all
+ irc-notice-channel ▶ irc-notice ▶ irc-all
+ irc-to-me ▶ irc-notice-me ▶ irc-notice ▶ irc-all
- irc-mode-channel ▶ irc-mode
- irc-mode-me ▶ irc-mode
+ irc-mode-channel ▶ irc-mode ▶ irc-all
+ irc-mode-me ▶ irc-mode ▶ irc-all
- irc-connected ▶ irc-numeric ▶ irc-XXX
- irc-numeric ▶ irc-XXX
+ irc-connected ▶ irc-numeric ▶ irc-XXX ▶ irc-all
+ irc-numeric ▶ irc-XXX ▶ irc-all
```
## Up Next