Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some comments #1372

Open
wants to merge 1 commit into
base: nightly
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion full-node/db/sov-db/src/state_db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ impl<Q: QueryManager> StateDB<Q> {
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)
}
}
Expand Down
2 changes: 1 addition & 1 deletion module-system/sov-modules-macros/src/cli_parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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});
Expand Down