diff --git a/crates/storage/db/src/tables/mod.rs b/crates/storage/db/src/tables/mod.rs index fb64fa86fc..b44957f405 100644 --- a/crates/storage/db/src/tables/mod.rs +++ b/crates/storage/db/src/tables/mod.rs @@ -370,14 +370,14 @@ tables! { table StorageChangeSets; /// Stores the current state of an [`Account`] indexed with `keccak256Address` - /// This table is in preparation for merkelization and calculation of state root. + /// This table is in preparation for merklization and calculation of state root. /// We are saving whole account data as it is needed for partial update when - /// part of storage is changed. Benefit for merkelization is that hashed addresses are sorted. + /// part of storage is changed. Benefit for merklization is that hashed addresses are sorted. table HashedAccounts; /// Stores the current storage values indexed with `keccak256Address` and /// hash of storage key `keccak256key`. - /// This table is in preparation for merkelization and calculation of state root. + /// This table is in preparation for merklization and calculation of state root. /// Benefit for merklization is that hashed addresses/keys are sorted. table HashedStorages;