aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoffix Znet <cpan@zoffix.com>2016-05-28 09:04:32 -0400
committerZoffix Znet <cpan@zoffix.com>2016-05-28 09:04:32 -0400
commitfec1b475f9c6ff12081543565687d495f25e608f (patch)
tree56610cb71b36022235b4e0670fd489cdafbf5b26
parentf7367cc30de8c5f75824d95fcc6883a9f17a9d2c (diff)
Write stuff
-rw-r--r--DESIGN/01-main.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/DESIGN/01-main.md b/DESIGN/01-main.md
index 3b82a19..1c53f82 100644
--- a/DESIGN/01-main.md
+++ b/DESIGN/01-main.md
@@ -370,7 +370,7 @@ back to the originator of the message. For example, here's a potential
implementation of `PRIVMSG` handler that receives the message object:
```perl6
- method irc-privmsg ($msg) {
+ method irc-privmsg-channel ($msg) {
return IRC_NEXT unless $msg.channel eq '#perl6';
$msg.reply: 'Nice to meet you!';
}