From 07da0d91a5234e45967cbf71d956fa16b7864a4b Mon Sep 17 00:00:00 2001 From: Yanick Champoux Date: Sat, 26 Aug 2023 12:14:28 -0400 Subject: [PATCH] correct typo in comment --- script.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script.pl b/script.pl index 92ca833..d59b9e9 100644 --- a/script.pl +++ b/script.pl @@ -70,7 +70,7 @@ sub generate_output_table ($ts) { } } - # create hash with each comptuer and its average GHz Days per day + # create hash with each computer and its average GHz Days per day my %ranks = pairmap { my $mean = sum( @$b ) / @$b; my $rounded = int( $mean + 0.5 );