aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
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;