aboutsummaryrefslogtreecommitdiff
path: root/lib/IRC/Client/Server.pm6
diff options
context:
space:
mode:
Diffstat (limited to 'lib/IRC/Client/Server.pm6')
-rw-r--r--lib/IRC/Client/Server.pm62
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/IRC/Client/Server.pm6 b/lib/IRC/Client/Server.pm6
index 1857fcc..f438d6d 100644
--- a/lib/IRC/Client/Server.pm6
+++ b/lib/IRC/Client/Server.pm6
@@ -1,6 +1,6 @@
unit class IRC::Client::Server;
-has @.channels where .all ~~ Str;
+has @.channels where .all ~~ Str|Pair;
has @.nick where .all ~~ Str;
has Int $.port where 0 <= $_ <= 65535;
has Str $.label;