From 6eae55e5168e2c389b9224018e1c484b6c9baef2 Mon Sep 17 00:00:00 2001 From: nk_ysg Date: Mon, 12 Aug 2024 22:08:12 +0800 Subject: [PATCH] chore: fix typos (#10260) --- crates/storage/db/src/tables/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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;