From ff59cb66a0e05b64662a43b27ef4f80e7ed20e21 Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Fri, 25 Oct 2019 11:13:33 +0200 Subject: Update Perl 6 reference to Raku This only updates the references in the code right now. Documentation should be updated at a later moment. --- lib/IRC/Client.pm6 | 8 ++++---- 1 file 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}; } -- cgit v1.1