aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorZoffix Znet <cpan@zoffix.com>2015-12-21 09:48:38 -0500
committerZoffix Znet <cpan@zoffix.com>2015-12-21 09:48:38 -0500
commit3ef85d79fec87c063aeb00a605fd8d40d2ec5cb4 (patch)
tree4025e3b650914bef26ad827c12728a61d2cb1e2d /README.md
parentebb509e5b106fdf24640b11f32e776f033a314e8 (diff)
Use a better example
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/README.md b/README.md
index 75fd4ce..77ab9d5 100644
--- a/README.md
+++ b/README.md
@@ -13,9 +13,10 @@ IRC::Client - Extendable Internet Relay Chat client
use IRC::Client::Plugin::Debugger;
IRC::Client.new(
- :host('localhost'),
- :debug,
- plugins => [ IRC::Client::Plugin::Debugger.new ]
+ :host('localhost')
+ :channels<#perl6bot #zofbot>
+ :debug
+ :plugins( IRC::Client::Plugin::Debugger.new )
).run;
```