From 5b8bd0de71b6295ca4613b3cc7b7c13add9f51ca Mon Sep 17 00:00:00 2001 From: "fuder.eth" <139509124+vtjl10@users.noreply.github.com> Date: Sun, 5 Jan 2025 21:35:26 +0100 Subject: [PATCH 1/3] Update lib.rs --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index dc851c8c..ff8c0d75 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,5 @@ //! `bellman` is a crate for building zk-SNARK circuits. It provides circuit -//! traits and and primitive structures, as well as basic gadget implementations +//! traits and primitive structures, as well as basic gadget implementations //! such as booleans and number abstractions. //! //! # Example circuit From b9ec1c7a4c97abc363c5bd69f83760525696984b Mon Sep 17 00:00:00 2001 From: "fuder.eth" <139509124+vtjl10@users.noreply.github.com> Date: Sun, 5 Jan 2025 21:35:45 +0100 Subject: [PATCH 2/3] Update mimc.rs --- groth16/tests/mimc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/groth16/tests/mimc.rs b/groth16/tests/mimc.rs index bf6df815..7c6baf95 100644 --- a/groth16/tests/mimc.rs +++ b/groth16/tests/mimc.rs @@ -4,7 +4,7 @@ use rand::thread_rng; // For benchmarking use std::time::{Duration, Instant}; -// Bring in some tools for using finite fiels +// Bring in some tools for using finite fields use ff::Field; // We're going to use the BLS12-381 pairing-friendly elliptic curve. From b3ce93220b2804f39c49794522e58c2e1efeb45f Mon Sep 17 00:00:00 2001 From: "fuder.eth" <139509124+vtjl10@users.noreply.github.com> Date: Sun, 5 Jan 2025 21:36:43 +0100 Subject: [PATCH 3/3] Update lib.rs --- groth16/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, }