From 265f64b2c047c7cdab15e9e4ab6e9f2752cff21f Mon Sep 17 00:00:00 2001 From: "Bradley M. Kuhn" Date: Sun, 3 Nov 2024 15:50:35 -0800 Subject: [PATCH] Correct typo in output string. --- scripts/calculate-renewal-rate.plx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/calculate-renewal-rate.plx b/scripts/calculate-renewal-rate.plx index 99514a3..153c708 100644 --- a/scripts/calculate-renewal-rate.plx +++ b/scripts/calculate-renewal-rate.plx @@ -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);