Correct typo in output string.
This commit is contained in:
parent
07aea9ba74
commit
265f64b2c0
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ my $activeCount = scalar(@supporterIds) - $lapsedCount;
|
||||||
print "\n\nWe have ", scalar(@supporterIds), " supporters and $lapsedCount are lapsed. That's ",
|
print "\n\nWe have ", scalar(@supporterIds), " supporters and $lapsedCount are lapsed. That's ",
|
||||||
sprintf("%.2f", $per), "%.\nActive supporter count: ", $activeCount, "\n";
|
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 "Average annual contribution by non-lapsed donors: ", sprintf("%.2f\n\n", $yearTot / $activeCount);
|
||||||
|
|
||||||
print "\n\nSpecial Contributions: \n" if (keys(%specialContributions) > 0);
|
print "\n\nSpecial Contributions: \n" if (keys(%specialContributions) > 0);
|
||||||
|
|
Loading…
Reference in a new issue