aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Sommrey <28217714+jo-37@users.noreply.github.com>2020-05-13 18:49:38 +0200
committerJörg Sommrey <28217714+jo-37@users.noreply.github.com>2020-05-13 18:49:38 +0200
commit7dcb721b9ed7e1cecb710c9d878999314a47cf29 (patch)
tree36d9aeffc6ee54a7e9443e5bb645ff483b923f17
parent6de4ab4be336474a1c70e81237d03ca52df76658 (diff)
downloadperlweeklychallenge-club-7dcb721b9ed7e1cecb710c9d878999314a47cf29.tar.gz
perlweeklychallenge-club-7dcb721b9ed7e1cecb710c9d878999314a47cf29.tar.bz2
perlweeklychallenge-club-7dcb721b9ed7e1cecb710c9d878999314a47cf29.zip
refine comments
-rwxr-xr-xchallenge-060/jo-37/perl/ch-2.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/challenge-060/jo-37/perl/ch-2.pl b/challenge-060/jo-37/perl/ch-2.pl
index 86172c303f..a2c05683b8 100755
--- a/challenge-060/jo-37/perl/ch-2.pl
+++ b/challenge-060/jo-37/perl/ch-2.pl
@@ -6,8 +6,8 @@
# - from the parts in @L.
# See below.
#
-# Performs recursive "branch and cut".
-# Though data is numeric, processing is strictly string based.
+# Though data has been described as numeric, processing is
+# strictly string based. (Example provided.)
use Test2::V0;
use Data::Dumper;
@@ -73,7 +73,7 @@ sub gen_num {
# Create numbers of given length, below given limit
# and assembled from given parts.
-# Parts are not restricted to single digits.
+# Parts are not restricted to single digits (nor to numeric data).
sub create_numbers {
my $length = shift;
my $limit = shift;