Correct typo in output string.

This commit is contained in:
Bradley M. Kuhn 2024-11-03 15:50:35 -08:00
parent 07aea9ba74
commit 265f64b2c0

View file

@ -53,7 +53,7 @@ my $activeCount = scalar(@supporterIds) - $lapsedCount;
print "\n\nWe have ", scalar(@supporterIds), " supporters and $lapsedCount are lapsed. That's ",
sprintf("%.2f", $per), "%.\nActive supporter count: ", $activeCount, "\n";
print "\n\nTotal (non speical) Given in Year in last year by active supoprters: ", sprintf("%.2f\n", $yearTot);
print "\n\nTotal (non speical) Given in Year in last year by active supporters: ", sprintf("%.2f\n", $yearTot);
print "Average annual contribution by non-lapsed donors: ", sprintf("%.2f\n\n", $yearTot / $activeCount);
print "\n\nSpecial Contributions: \n" if (keys(%specialContributions) > 0);