From 449ec70850782bdab0658eddddae1eec6a7102f0 Mon Sep 17 00:00:00 2001 From: Scimon Date: Tue, 24 Jun 2025 09:06:22 +0100 Subject: Small change to documentation strings in part 2 --- challenge-327/simon-proctor/raku/ch-2.raku | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenge-327/simon-proctor/raku/ch-2.raku b/challenge-327/simon-proctor/raku/ch-2.raku index 807b068e3a..43d818647a 100755 --- a/challenge-327/simon-proctor/raku/ch-2.raku +++ b/challenge-327/simon-proctor/raku/ch-2.raku @@ -4,7 +4,7 @@ a list of pairs which share the minimum absolute difference found in the list) sub MAIN ( - *@a where @a.all ~~ Int && @a.unique.elems == @a.elems # A list of distinct integers + *@a where @a.all ~~ Int && @a.unique.elems == @a.elems #= A list of distinct integers ) { my @ret = []; my $mad = Inf; -- cgit