From 614621d9e7618cf59b9cabcbde72d82d2cc5ab56 Mon Sep 17 00:00:00 2001 From: skids Date: Sun, 17 Sep 2017 21:07:12 -0400 Subject: [PATCH] Update some links in roast comments. The colabti.de links were not just dead but had been squatted. Suggest a search of all project trees to eliminate any more. Also, update comments on boolean pair syntax to match S02 changes made back in 2009. --- S02-literals/pairs.t | 8 ++++---- S03-binding/arrays.t | 3 +-- S03-binding/hashes.t | 3 +-- S06-operator-overloading/sub.t | 5 ++--- 4 files changed, 8 insertions(+), 11 deletions(-) diff --git a/S02-literals/pairs.t b/S02-literals/pairs.t index ef0bd10d27..3cc64d87de 100644 --- a/S02-literals/pairs.t +++ b/S02-literals/pairs.t @@ -8,8 +8,8 @@ use Test::Idempotence; # L # See thread "Demagicalizing pair" on p6l started by Luke Palmer, -# L<"http://article.gmane.org/gmane.comp.lang.perl.perl6.language/4778/"> and -# L<"http://colabti.de/irclogger/irclogger_log/perl6?date=2005-10-09,Sun&sel=528#l830">. +# L<"https://www.mail-archive.com/perl6-language@perl.org/msg21472.html"> and +# L<"https://irclog.perlgeek.de/perl6/2005-10-09">. # Also see L<"http://www.nntp.perl.org/group/perl.perl6.language/23532">. # To summarize: @@ -23,8 +23,8 @@ use Test::Idempotence; # foo($pair); # pair passed positionally # foo(|$pair); # named # -# S02 lists ':a' as being equivlaent to a => 1, so -# the type of the value of that pair is Int, not Bool +# S02 lists ':a' as being equivlaent to a => True, so +# the type of the value of that pair is Bool, not Int plan 83; diff --git a/S03-binding/arrays.t b/S03-binding/arrays.t index 5aa49d8b64..dcac970c3f 100644 --- a/S03-binding/arrays.t +++ b/S03-binding/arrays.t @@ -207,8 +207,7 @@ plan 47; } # Binding @array := $arrayref. -# See -# http://colabti.de/irclogger/irclogger_log/perl6?date=2005-11-06,Sun&sel=388#l564 +# See https://irclog.perlgeek.de/perl6/2005-11-06#i_-424364 # and consider the magic behind parameter binding (which is really normal # binding). { diff --git a/S03-binding/hashes.t b/S03-binding/hashes.t index b83888001b..df58384849 100644 --- a/S03-binding/hashes.t +++ b/S03-binding/hashes.t @@ -165,8 +165,7 @@ plan 39; } # Binding %hash := $hashref. -# See -# http://colabti.de/irclogger/irclogger_log/perl6?date=2005-11-06,Sun&sel=388#l564 +# See https://irclog.perlgeek.de/perl6/2005-11-06#i_-424364 # and consider the magic behind parameter binding (which is really normal # binding). { diff --git a/S06-operator-overloading/sub.t b/S06-operator-overloading/sub.t index aa0c868cea..5c378b824f 100644 --- a/S06-operator-overloading/sub.t +++ b/S06-operator-overloading/sub.t @@ -47,8 +47,7 @@ Testing operator overloading subroutines # [NOTE] # pmichaud ruled that prefix:<;> and postfix:<;> shouldn't be defined by -# the synopses: -# http://colabti.de/irclogger/irclogger_log/perl6?date=2006-07-29,Sat&sel=189#l299 +# the synopses: https://irclog.perlgeek.de/perl6/2006-07-29#i_-200213 # so we won't test them here. # Overriding prefix: @@ -61,7 +60,7 @@ Testing operator overloading subroutines # [NOTE] # pmichaud ruled that infix is incorrect: -# http://colabti.de/irclogger/irclogger_log/perl6?date=2006-07-29,Sat&sel=183#l292 +# https://irclog.perlgeek.de/perl6/2006-07-29#i_-200221 # so we won't test it here either. # great. Now, what about those silent auto-conversion operators a la: