aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoelle Maslak <jmaslak@antelope.net>2019-10-27 14:53:09 -0600
committerJoelle Maslak <jmaslak@antelope.net>2019-10-27 14:53:09 -0600
commitd761bd2c32748548556d80ed125bb9e208662264 (patch)
tree70722b5099441fadc679df311aa72eaf3fe1a744
parentb06bfa34831dcbd0f6211c4a07b4cb0d8450d94a (diff)
downloadperlweeklychallenge-club-d761bd2c32748548556d80ed125bb9e208662264.tar.gz
perlweeklychallenge-club-d761bd2c32748548556d80ed125bb9e208662264.tar.bz2
perlweeklychallenge-club-d761bd2c32748548556d80ed125bb9e208662264.zip
Fix error message
-rwxr-xr-xchallenge-031/joelle-maslak/perl5/ch-1.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-031/joelle-maslak/perl5/ch-1.pl b/challenge-031/joelle-maslak/perl5/ch-1.pl
index 09afa38e3a..e06041a9bc 100755
--- a/challenge-031/joelle-maslak/perl5/ch-1.pl
+++ b/challenge-031/joelle-maslak/perl5/ch-1.pl
@@ -7,7 +7,7 @@ use warnings;
use feature 'signatures';
no warnings 'experimental::signatures';
-if ( @ARGV != 2 ) { die("Provide letters to use and (optionally) filename") }
+if ( @ARGV != 2 ) { die("Provide numerator and denominator") }
MAIN: {
if ( check_for_div_by_zero(@ARGV) ) {