aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorZoffix Znet <cpan@zoffix.com>2016-06-05 10:14:38 -0400
committerZoffix Znet <cpan@zoffix.com>2016-06-05 10:14:38 -0400
commit6f3f00300a122e33ca1050fdb42cccda39fe9ba4 (patch)
tree7c1c08ed4bfdb32cf0416ac3d78f4e8b6a33141a /examples
parent496d289d8b515ed57a1586c3a39826703c3923b2 (diff)
Z
Diffstat (limited to 'examples')
-rw-r--r--examples/bot.pl64
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/bot.pl6 b/examples/bot.pl6
index d64e9b8..12245db 100644
--- a/examples/bot.pl6
+++ b/examples/bot.pl6
@@ -15,8 +15,8 @@ my $irc = IRC::Client.new(
# :channels<#zofbot>
# :host<irc.freenode.net>
:servers(
- inspircd => { :port<6667> }
- mine => { :port<5667> }
+ mine => { :port<5667> },
+ inspircd => { :port<6667> },
)
:plugins(MyPlug.new)
).run;