diff --git a/full-node/db/sov-db/src/state_db.rs b/full-node/db/sov-db/src/state_db.rs index 38760d83b..9af0eb6f5 100644 --- a/full-node/db/sov-db/src/state_db.rs +++ b/full-node/db/sov-db/src/state_db.rs @@ -127,7 +127,7 @@ impl StateDB { let next_version = largest_version .unwrap_or_default() .checked_add(1) - .expect("JMT Version overflow. Is is over"); + .expect("JMT Version overflow. It is over"); Ok(next_version) } } diff --git a/module-system/sov-modules-macros/src/cli_parser.rs b/module-system/sov-modules-macros/src/cli_parser.rs index 7f6d42bbf..ec3803125 100644 --- a/module-system/sov-modules-macros/src/cli_parser.rs +++ b/module-system/sov-modules-macros/src/cli_parser.rs @@ -153,7 +153,7 @@ impl CliParserMacro { generics_with_inner.split_for_impl(); // Generics identical to generics_with_inner, but with the `__Inner` type renamed to `__Dest`. - // This type is used in the the try_map conversion + // This type is used in the try_map conversion let generics_for_dest = { let mut generics = generics.clone(); generics.params.insert(0, syn::parse_quote! {__Dest});