diff --git a/CHANGELOG.md b/CHANGELOG.md index 5be45039..cbda4b9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,7 +44,7 @@ and this project adheres to Rust's notion of ## [0.11.2] - 2022-05-04 ### Fixed -- Groth16 prover now correctly computes query densitites with respect to linear +- Groth16 prover now correctly computes query densities with respect to linear combinations that contain coefficients of zero. - Fixed an infinite recursion bug in the `Display` implementation for `SynthesisError`. diff --git a/groth16/src/lib.rs b/groth16/src/lib.rs index 5114bf22..42e99d50 100644 --- a/groth16/src/lib.rs +++ b/groth16/src/lib.rs @@ -404,7 +404,7 @@ pub struct PreparedVerifyingKey { neg_gamma_g2: E::G2Prepared, /// -delta in G2 neg_delta_g2: E::G2Prepared, - /// Copy of IC from `VerifiyingKey`. + /// Copy of IC from `VerifyingKey`. ic: Vec, }