aboutsummaryrefslogtreecommitdiff
path: root/challenge-005
diff options
context:
space:
mode:
authorJoelle Maslak <jmaslak@antelope.net>2019-04-26 20:54:04 -0600
committerJoelle Maslak <jmaslak@antelope.net>2019-04-26 20:54:04 -0600
commitcefb8834bb097261993c8f5ef918fb0041eb8f7f (patch)
tree266ab91e0d7c4f649d86391616955d19b0ed1df1 /challenge-005
parentffc025eb2d95f00cf3578fa13fe4125c71d09597 (diff)
downloadperlweeklychallenge-club-cefb8834bb097261993c8f5ef918fb0041eb8f7f.tar.gz
perlweeklychallenge-club-cefb8834bb097261993c8f5ef918fb0041eb8f7f.tar.bz2
perlweeklychallenge-club-cefb8834bb097261993c8f5ef918fb0041eb8f7f.zip
Fix comment
Diffstat (limited to 'challenge-005')
-rwxr-xr-xchallenge-005/joelle-maslak/perl5/ch-1.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/challenge-005/joelle-maslak/perl5/ch-1.pl b/challenge-005/joelle-maslak/perl5/ch-1.pl
index 8a73c8e4d3..e77abe7b4a 100755
--- a/challenge-005/joelle-maslak/perl5/ch-1.pl
+++ b/challenge-005/joelle-maslak/perl5/ch-1.pl
@@ -13,18 +13,18 @@ if ( @ARGV < 1 or @ARGV > 2 ) { die("Provide letters to use and (optionally
# To call this application:
#
-# perl6 ch-1.pl; <letters> <filename>
+# perl ch-1.pl; <letters> <filename>
#
# If you want to use /usr/share/dict/words as the word list, you can
# omit the filename.
#
# Example:
#
-# perl6 ch-1.pl binary
+# perl ch-1.pl binary
#
# which is equivilent to:
#
-# perl6 ch-1.pl binary /usr/share/dict/words
+# perl ch-1.pl binary /usr/share/dict/words
#
# With my Unix dictionary (English), it returns binary and brainy
#