From 52175366653965384cde6854c1a6084e53cdd01e Mon Sep 17 00:00:00 2001 From: wangjingcun Date: Wed, 27 Nov 2024 00:15:10 +0800 Subject: [PATCH] chore: fix some comments Signed-off-by: wangjingcun --- crates/bellpepper-core/src/lib.rs | 2 +- deny.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/bellpepper-core/src/lib.rs b/crates/bellpepper-core/src/lib.rs index 211414e..2533222 100644 --- a/crates/bellpepper-core/src/lib.rs +++ b/crates/bellpepper-core/src/lib.rs @@ -1,6 +1,6 @@ #![deny(missing_debug_implementations)] //! `bellpepper` 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 diff --git a/deny.toml b/deny.toml index 0e425cc..77cf199 100644 --- a/deny.toml +++ b/deny.toml @@ -190,11 +190,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!