diff --git a/src/data_structures.rs b/src/data_structures.rs index 457f581..9eb9dd5 100644 --- a/src/data_structures.rs +++ b/src/data_structures.rs @@ -32,7 +32,7 @@ impl Default for Proof { pub struct VerifyingKey { /// The `alpha * G`, where `G` is the generator of `E::G1`. pub alpha_g1: E::G1Affine, - /// The `alpha * H`, where `H` is the generator of `E::G2`. + /// The `beta * H`, where `H` is the generator of `E::G2`. pub beta_g2: E::G2Affine, /// The `gamma * H`, where `H` is the generator of `E::G2`. pub gamma_g2: E::G2Affine,