aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Neleigh <matthew.neleigh@gmail.com>2023-03-18 12:01:39 -0400
committerMatthew Neleigh <matthew.neleigh@gmail.com>2023-03-18 12:01:39 -0400
commitaaf84f7b7741d9d5bc99c169664a97831a41833e (patch)
treede849a656fc38ef7c1a95a308087bb0fc2974791
parent85c211338054f58b426d635cd60678e315946392 (diff)
downloadperlweeklychallenge-club-aaf84f7b7741d9d5bc99c169664a97831a41833e.tar.gz
perlweeklychallenge-club-aaf84f7b7741d9d5bc99c169664a97831a41833e.tar.bz2
perlweeklychallenge-club-aaf84f7b7741d9d5bc99c169664a97831a41833e.zip
modified: challenge-208/mattneleigh/perl/ch-1.pl
-rwxr-xr-xchallenge-208/mattneleigh/perl/ch-1.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/challenge-208/mattneleigh/perl/ch-1.pl b/challenge-208/mattneleigh/perl/ch-1.pl
index 7a7a12edca..e3995c92b4 100755
--- a/challenge-208/mattneleigh/perl/ch-1.pl
+++ b/challenge-208/mattneleigh/perl/ch-1.pl
@@ -111,10 +111,10 @@ sub common_minimum_index_sum{
################################################################################
# Build a quoted, comma-separated string out of the contents of a list
# Takes one argument:
-# * The list (e.g. ( 1, 2, 3, 4 )
+# * The list (e.g. ( 1, 2, 3, 4 ) )
# Returns:
# * A quoted, comma-separated string containing the contents of the list (e.g.
-# ""1", "2", "3", "4"")
+# ""1", "2", "3", "4"" )
################################################################################
sub list_to_quoted_string{