Browse Source

chore: fix typos

al-update-winterfell
Bobbin Threadbare 7 months ago
parent
commit
913384600d
No known key found for this signature in database GPG Key ID: 289C444AD87BC941
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/dsa/rpo_falcon512/math/fft.rs

+ 2
- 2
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<Self> {
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<Self> {

Loading…
Cancel
Save