From d761bd2c32748548556d80ed125bb9e208662264 Mon Sep 17 00:00:00 2001 From: Joelle Maslak Date: Sun, 27 Oct 2019 14:53:09 -0600 Subject: Fix error message --- challenge-031/joelle-maslak/perl5/ch-1.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) ) { -- cgit