diff options
author | Patrick Spek <p.spek@tyil.nl> | 2019-10-25 11:13:33 +0200 |
---|---|---|
committer | Patrick Spek <p.spek@tyil.nl> | 2019-10-25 11:13:33 +0200 |
commit | ff59cb66a0e05b64662a43b27ef4f80e7ed20e21 (patch) | |
tree | 2222eec6f00024d9a2810662c9ed4f2f1a349fa9 | |
parent | 3c6cebf9e394c6d51a8d2a49549ffae1427c5824 (diff) | |
download | irc-client-rakuize.tar.gz irc-client-rakuize.tar.bz2 |
Update Perl 6 reference to Rakurakuize
This only updates the references in the code right now. Documentation
should be updated at a later moment.
-rw-r--r-- | lib/IRC/Client.pm6 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/IRC/Client.pm6 b/lib/IRC/Client.pm6 index bd0d861..57b734a 100644 --- a/lib/IRC/Client.pm6 +++ b/lib/IRC/Client.pm6 @@ -41,10 +41,10 @@ submethod BUILD ( :$alias = [], Bool:D :$ssl = False, Str :$ca-file, - Str:D :$username = 'Perl6IRC', + Str:D :$username = 'RakuIRC', Str:D :$userhost = 'localhost', - Str:D :$userreal = 'Perl6 IRC Client', - :$channels = ('#perl6',), + Str:D :$userreal = 'Raku IRC Client', + :$channels = ('#raku',), Bool:D :$autoprefix = True, ) { @!filters = @$filters; @@ -329,7 +329,7 @@ method !plugs-that-can ($method, |c) { } method !get-server ($server is copy) { - $server //= '_'; # stupid Perl 6 and its sig defaults + $server //= '_'; # stupid Raku and its sig defaults return $server if $server ~~ IRC::Client::Server; return %!servers{$server}; } |