From 9510ad73101c903aa8714d16634b5031af1e1ffa Mon Sep 17 00:00:00 2001 From: cuteolaf Date: Fri, 7 Jul 2023 01:27:47 -0700 Subject: [PATCH] Update lib.rs (#14528) --- substrate/frame/benchmarking/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substrate/frame/benchmarking/src/lib.rs b/substrate/frame/benchmarking/src/lib.rs index e5ec61d622..8864cd1d88 100644 --- a/substrate/frame/benchmarking/src/lib.rs +++ b/substrate/frame/benchmarking/src/lib.rs @@ -128,7 +128,7 @@ pub use v1::*; /// as `I` in the case of an `#[instance_benchmarks]` module. You should not add these to the /// function signature as this will be handled automatically for you based on whether this is a /// `#[benchmarks]` or `#[instance_benchmarks]` module and whatever [where clause](#where-clause) -/// you have defined for the the module. You should not manually add any generics to the +/// you have defined for the module. You should not manually add any generics to the /// signature of your benchmark function. /// /// Also note that the `// setup code` and `// verification code` comments shown above are not