From 913384600d8831b34f17f38c53dd43551d473455 Mon Sep 17 00:00:00 2001 From: Bobbin Threadbare Date: Wed, 11 Sep 2024 16:52:21 -0700 Subject: [PATCH] chore: fix typos --- src/dsa/rpo_falcon512/math/fft.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dsa/rpo_falcon512/math/fft.rs b/src/dsa/rpo_falcon512/math/fft.rs index 33a932f..28f4baf 100644 --- a/src/dsa/rpo_falcon512/math/fft.rs +++ b/src/dsa/rpo_falcon512/math/fft.rs @@ -74,7 +74,7 @@ where rev } - /// Computes the first n powers of the 2nth root of unity, and put them in bit-reversed order. + /// Computes the first n powers of the 2nd root of unity, and put them in bit-reversed order. #[allow(dead_code)] fn bitreversed_powers(n: usize) -> Vec { let psi = Self::primitive_root_of_unity(2 * n); @@ -88,7 +88,7 @@ where array } - /// Computes the first n powers of the 2nth root of unity, invert them, and put them in + /// Computes the first n powers of the 2nd root of unity, invert them, and put them in /// bit-reversed order. #[allow(dead_code)] fn bitreversed_powers_inverse(n: usize) -> Vec {