From 07f571e11f346ef51d4c4ce3cf14ab0360982a30 Mon Sep 17 00:00:00 2001 From: Arthur Paulino Date: Tue, 5 Mar 2024 09:37:33 -0300 Subject: [PATCH] fix: typos (#357) --- deny.toml | 4 ++-- src/provider/non_hiding_zeromorph.rs | 2 +- src/supernova/test.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/deny.toml b/deny.toml index 99f1bf8aa..670589478 100644 --- a/deny.toml +++ b/deny.toml @@ -192,11 +192,11 @@ wildcards = "allow" # * all - Both lowest-version and simplest-path are used highlight = "all" # The default lint level for `default` features for crates that are members of -# the workspace that is being checked. This can be overriden by allowing/denying +# the workspace that is being checked. This can be overridden by allowing/denying # `default` on a crate-by-crate basis if desired. workspace-default-features = "allow" # The default lint level for `default` features for external crates that are not -# members of the workspace. This can be overriden by allowing/denying `default` +# members of the workspace. This can be overridden by allowing/denying `default` # on a crate-by-crate basis if desired. external-default-features = "allow" # List of crates that are allowed. Use with care! diff --git a/src/provider/non_hiding_zeromorph.rs b/src/provider/non_hiding_zeromorph.rs index bb6ffe196..8fcdfa211 100644 --- a/src/provider/non_hiding_zeromorph.rs +++ b/src/provider/non_hiding_zeromorph.rs @@ -85,7 +85,7 @@ where } /// Generate a commitment for a polynomial - /// Note that the scheme is not hidding + /// Note that the scheme is not hiding pub fn commit( prover_param: impl Borrow>, poly: &UVKZGPoly, diff --git a/src/supernova/test.rs b/src/supernova/test.rs index 9a7da120c..51c89c07e 100644 --- a/src/supernova/test.rs +++ b/src/supernova/test.rs @@ -355,7 +355,7 @@ where // Here demo a simple RAM machine // - with 2 argumented circuit // - each argumented circuit contains primary and secondary circuit - // - a memory commmitment via a public IO `rom` (like a program) to constraint the sequence execution + // - a memory commitment via a public IO `rom` (like a program) to constraint the sequence execution // This test also ready to add more argumented circuit and ROM can be arbitrary length