From b45741070d1bc54a98ffd2c8e4b4a7b702b8bbd8 Mon Sep 17 00:00:00 2001 From: David Cook Date: Tue, 28 Oct 2025 14:56:13 -0500 Subject: [PATCH] Fix documentation on type aliases --- src/vdaf/prio3.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vdaf/prio3.rs b/src/vdaf/prio3.rs index df17a67c..78236b12 100644 --- a/src/vdaf/prio3.rs +++ b/src/vdaf/prio3.rs @@ -148,7 +148,7 @@ impl Prio3SumVecMultithreaded { } } -/// The sum type. Each measurement is an integer in `[0,2^bits)` for some `0 < bits < 64` and the +/// The sum type. Each measurement is an integer in `[0, max_measurement]` and the /// aggregate is the sum. pub type Prio3Sum = Prio3, XofTurboShake128, 32>; @@ -344,7 +344,7 @@ impl Prio3MultihotCountVecMultithreaded { } } -/// The average type. Each measurement is an integer in `[0,2^bits)` for some `0 < bits < 64` and +/// The average type. Each measurement is an integer in `[0, max_measurement]` and /// the aggregate is the arithmetic average. pub type Prio3Average = Prio3, XofTurboShake128, 32>;