aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark <53903062+andemark@users.noreply.github.com>2024-04-22 17:34:19 +0000
committerMark <53903062+andemark@users.noreply.github.com>2024-04-22 17:34:19 +0000
commit3d66c267df5767d31294d9181075376bc3e131d7 (patch)
tree47bb131a37e0132bac932226d3c6fcf216310d00
parent84f037baa049a84b7e64e04250a1f051365d7b05 (diff)
downloadperlweeklychallenge-club-3d66c267df5767d31294d9181075376bc3e131d7.tar.gz
perlweeklychallenge-club-3d66c267df5767d31294d9181075376bc3e131d7.tar.bz2
perlweeklychallenge-club-3d66c267df5767d31294d9181075376bc3e131d7.zip
Challenge 266 Solutions (Raku)
-rw-r--r--challenge-266/mark-anderson/raku/ch-1.raku2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-266/mark-anderson/raku/ch-1.raku b/challenge-266/mark-anderson/raku/ch-1.raku
index f52acbcc5f..9a2bbd201f 100644
--- a/challenge-266/mark-anderson/raku/ch-1.raku
+++ b/challenge-266/mark-anderson/raku/ch-1.raku
@@ -7,7 +7,7 @@ is-deeply uncommon-words('Mango is Mango', 'Orange is Orange'), (),
sub uncommon-words($s1, $s2)
{
- # A literal solution using the one and none junctions
+ # A literal translation using the one and none junctions
sub uw($s1, $s2)
{
my @s1 = $s1.words;