aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorZoffix Znet <cpan@zoffix.com>2016-01-01 20:26:35 -0500
committerZoffix Znet <cpan@zoffix.com>2016-01-01 20:26:35 -0500
commita35dad2b1a755cdff3f11a19472090dbd661d48c (patch)
tree9cfdd0270b9053f36e40d0d72fbc1259c91ed77b /README.md
parentff7d4cd63a2823cc2687f9f4347ebbb489561e87 (diff)
Use $e instead of $msg
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 305d0a5..4eac154 100644
--- a/README.md
+++ b/README.md
@@ -82,7 +82,7 @@ The plugin chain handling the message will stop after this plugin.
```perl6
unit class IRC::Client::Plugin::PingPong is IRC::Client::Plugin;
-method irc-ping ($irc, $msg) { $irc.ssay("PONG {$irc.nick} $msg<params>[0]") }
+method irc-ping ($irc, $e) { $irc.ssay("PONG {$irc.nick} $e<params>[0]") }
```
### More involved handling