Skip to content

Commit

Permalink
Merge pull request 0xPolygonZero#1580 from AdventureSeeker987/main
Browse files Browse the repository at this point in the history
chore: remove repetitive words
  • Loading branch information
muursh authored Apr 24, 2024
2 parents 56e1b98 + 1f6c04f commit d48ce9c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plonky2/src/plonk/circuit_data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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>,
}

Expand Down
4 changes: 2 additions & 2 deletions util/src/transpose_util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]`.
///
Expand All @@ -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]`.
///
Expand Down

0 comments on commit d48ce9c

Please sign in to comment.