From 56ebc811047bd517b55e842dd36b10f033d3c377 Mon Sep 17 00:00:00 2001 From: Arend Peter Date: Mon, 16 Dec 2024 02:50:14 -0800 Subject: [PATCH] Minor log wording tweak --- packages/backend/src/Tabulators/AllocatedScore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/backend/src/Tabulators/AllocatedScore.ts b/packages/backend/src/Tabulators/AllocatedScore.ts index 25b528f9..9eb32568 100644 --- a/packages/backend/src/Tabulators/AllocatedScore.ts +++ b/packages/backend/src/Tabulators/AllocatedScore.ts @@ -144,7 +144,7 @@ export function AllocatedScore(candidates: string[], votes: ballot[], nWinners = summaryData.spentAboves.push(spent_above.valueOf()); if (spent_above.valueOf() > 0) { - results.logs.push(`The ${rounded(spent_above)} voters who gave ${summaryData.candidates[w].name} more than ${rounded(split_point.mul(maxScore))} stars are fully represented and will be weighted to 0 for future rounds.`) + results.logs.push(`The ${rounded(spent_above)} voters who gave ${summaryData.candidates[w].name} more than ${rounded(split_point.mul(maxScore))} stars are fully represented and will be removed from future rounds.`) cand_df.forEach((c, i) => { if (c.weighted_score.compare(split_point) > 0) { cand_df[i].ballot_weight = new Fraction(0);