diff options
| -rw-r--r-- | challenge-266/mark-anderson/raku/ch-1.raku | 2 |
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; |
