From 005dde70e2b733c5b74234ca83879e7e3b681eb5 Mon Sep 17 00:00:00 2001 From: "Jeff Washington (jwash)" Date: Thu, 23 Feb 2023 17:10:09 -0600 Subject: [PATCH] minor cleanup (#30477) --- runtime/src/account_storage.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/account_storage.rs b/runtime/src/account_storage.rs index 4cf61d15dc..4479b8d338 100644 --- a/runtime/src/account_storage.rs +++ b/runtime/src/account_storage.rs @@ -35,7 +35,7 @@ impl AccountStorage { /// can look in 'map' and 'shrink_in_progress_map' to find the specified append vec /// when shrinking begins, shrinking_in_progress is called. /// This fn looks in 'map' first, then in 'shrink_in_progress_map', then in 'map' again because - /// 'shrink_in_progress' first inserts the new append vec into 'shrink_in_progress_map' + /// 'shrinking_in_progress' first inserts the new append vec into 'shrink_in_progress_map' /// Then, when 'shrink_in_progress' is dropped, /// the old append vec is replaced in 'map' with the new append vec /// then the new append vec is dropped from 'shrink_in_progress_map'.