From 1443fc43602aef0acc3f8e63b5407408d7ce5cd6 Mon Sep 17 00:00:00 2001 From: Daniel Mantovani Date: Thu, 24 Sep 2020 17:39:26 -0300 Subject: solutions to challenge 079 - typo fixed --- challenge-079/daniel-mantovani/perl/ch-2.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenge-079/daniel-mantovani/perl/ch-2.pl b/challenge-079/daniel-mantovani/perl/ch-2.pl index 5dd81f4819..65843842d0 100644 --- a/challenge-079/daniel-mantovani/perl/ch-2.pl +++ b/challenge-079/daniel-mantovani/perl/ch-2.pl @@ -55,7 +55,7 @@ for my $r (reverse 1 .. $max) { while ($line =~ s/#(\s+)#/'#'. 'W' x length($1) . '#'/e) { } # units this row can trap is the amount of "W"s we have on it -# feel free to change the tranaliteration operator to tr/W/W/ +# feel free to change the transliteration operator to tr/W/W/ # to keep an indication of the allocated water units $acc_water += $line =~ tr/W/ /; -- cgit