aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrobbie-hatley <Robbie.Hatley@gmail.com>2024-01-01 18:49:25 -0800
committerrobbie-hatley <Robbie.Hatley@gmail.com>2024-01-01 18:49:25 -0800
commitf5ef0d8e6f484efbcbbf97c1cd1231941a65c645 (patch)
tree2741c7426135215be2e9b09add07c7247a553b65
parent44aa730c9ec0c61fa35a035db0fc0c78cc237909 (diff)
downloadperlweeklychallenge-club-f5ef0d8e6f484efbcbbf97c1cd1231941a65c645.tar.gz
perlweeklychallenge-club-f5ef0d8e6f484efbcbbf97c1cd1231941a65c645.tar.bz2
perlweeklychallenge-club-f5ef0d8e6f484efbcbbf97c1cd1231941a65c645.zip
Fixed minor typo in 250-2.
-rwxr-xr-xchallenge-250/robbie-hatley/perl/ch-2.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-250/robbie-hatley/perl/ch-2.pl b/challenge-250/robbie-hatley/perl/ch-2.pl
index 07ab378791..af08afe279 100755
--- a/challenge-250/robbie-hatley/perl/ch-2.pl
+++ b/challenge-250/robbie-hatley/perl/ch-2.pl
@@ -87,7 +87,7 @@ sub alnum_string_value ($x) {
}
# What is the maximum "alphanumeric string value"
-#of the elements of an array of alphanumeric strings?
+# of the elements of an array of alphanumeric strings?
sub max_alnum_string_value ($aref) {
return max map {alnum_string_value $_} @$aref;
}