From a4b929fa2b96984624dba6ee0fed32ff9862fcb8 Mon Sep 17 00:00:00 2001 From: Bob Niu Date: Fri, 28 Jun 2024 14:36:30 +0800 Subject: [PATCH] fix wrong comment --- src/data_structures.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,