aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoffix Znet <cpan@zoffix.com>2016-07-29 06:46:53 -0400
committerZoffix Znet <cpan@zoffix.com>2016-07-29 06:46:53 -0400
commit835f555b28d1cab5fbefc5230b8877056087909b (patch)
treed97f7cd97971fdc53321c7fceacc0a07affd3f1a
parent25598e1f5b3bafe6fb78e99ddb7911b8c439e1e3 (diff)
Use positionals in the docs
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 7291c16..e0b0940 100644
--- a/README.md
+++ b/README.md
@@ -14,15 +14,15 @@ IRC::Client - Extendable Internet Relay Chat client
:host<irc.freenode.net>
:channels<#perl6bot #zofbot>
:debug
- :plugins(
+ :plugins[
class { method irc-to-me ($ where /hello/) { 'Hello to you too!'} }
- )
- :filters(
+ ]
+ :filters[
-> $text where .chars > 200 {
'The output is too large to show here. See: '
~ Pastebin::Shadowcat.new.paste: $text;
}
- );
+ ];
```
# DESCRIPTION