Merge pull request #1580 from AdventureSeeker987/main

chore: remove repetitive words
This commit is contained in:
Ben 2024-04-24 15:20:37 +01:00 committed by GitHub
commit d48ce9cf88
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -363,7 +363,7 @@ pub struct ProverOnlyCircuitData<
pub circuit_digest: <<C as GenericConfig<D>>::Hasher as Hasher<F>>::Hash,
///The concrete placement of the lookup gates for each lookup table index.
pub lookup_rows: Vec<LookupWire>,
/// A vector of (looking_in, looking_out) pairs for for each lookup table index.
/// A vector of (looking_in, looking_out) pairs for each lookup table index.
pub lut_to_lookups: Vec<Lookup>,
}

View File

@ -27,7 +27,7 @@ unsafe fn transpose_in_place_square_small<T>(
}
/// Transpose square matrices and swap
/// The matrices are of of size `1 << lb_size` by `1 << lb_size`. They occupy
/// The matrices are of size `1 << lb_size` by `1 << lb_size`. They occupy
/// `M0[i, j] == arr[(i + x << lb_stride) + j + y]`, `M1[i, j] == arr[i + x + (j + y << lb_stride)]`
/// for `0 <= i, j < 1 << lb_size. The transposition swaps `M0[i, j]` and `M1[j, i]`.
///
@ -53,7 +53,7 @@ unsafe fn transpose_swap_square_small<T>(
}
/// Transpose square matrices and swap
/// The matrices are of of size `1 << lb_size` by `1 << lb_size`. They occupy
/// The matrices are of size `1 << lb_size` by `1 << lb_size`. They occupy
/// `M0[i, j] == arr[(i + x << lb_stride) + j + y]`, `M1[i, j] == arr[i + x + (j + y << lb_stride)]`
/// for `0 <= i, j < 1 << lb_size. The transposition swaps `M0[i, j]` and `M1[j, i]`.
///