diff --git a/crates/ink/ir/src/ir/utils.rs b/crates/ink/ir/src/ir/utils.rs index 987162d8f55..6f4b47d256e 100644 --- a/crates/ink/ir/src/ir/utils.rs +++ b/crates/ink/ir/src/ir/utils.rs @@ -147,7 +147,7 @@ where /// Finds the salt of a struct, enum or union. /// The salt is any generic that has bound `StorageKey`. -/// In most cases it is parent storage key or auto-generated storage key. +/// In most cases it is the parent storage key or the auto-generated storage key. pub fn find_storage_key_salt(input: &syn::DeriveInput) -> Option { input.generics.params.iter().find_map(|param| { if let syn::GenericParam::Type(type_param) = param {