From 1fb82d7924b5a9407b1bf607ab707f5b938bc932 Mon Sep 17 00:00:00 2001 From: HaoranYi Date: Wed, 30 Mar 2022 09:47:51 -0500 Subject: [PATCH] fix typo in comments (#24004) --- runtime/src/sorted_storages.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/sorted_storages.rs b/runtime/src/sorted_storages.rs index eee18bd822..7f0db24d85 100644 --- a/runtime/src/sorted_storages.rs +++ b/runtime/src/sorted_storages.rs @@ -27,7 +27,7 @@ impl<'a> SortedStorages<'a> { } } - /// primary method of retreiving (Slot, SnapshotStorage) + /// primary method of retrieving (Slot, SnapshotStorage) pub fn iter_range(&'a self, range: R) -> SortedStoragesIter<'a> where R: RangeBounds,