From 2252bbbe77d183256f8e257756ef4ee62b5ba208 Mon Sep 17 00:00:00 2001 From: Haoran Yi Date: Mon, 2 May 2022 10:09:08 -0500 Subject: [PATCH] fix typo --- runtime/src/snapshot_utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/snapshot_utils.rs b/runtime/src/snapshot_utils.rs index 864f9d9ffae736..10ada21b41cce4 100644 --- a/runtime/src/snapshot_utils.rs +++ b/runtime/src/snapshot_utils.rs @@ -134,7 +134,7 @@ impl PartialOrd for BankSnapshotInfo { } } -// Order BankSnapshotInfo by slot (ascending), which practially is sorting chronologically +// Order BankSnapshotInfo by slot (ascending), which practically is sorting chronologically impl Ord for BankSnapshotInfo { fn cmp(&self, other: &Self) -> Ordering { self.slot.cmp(&other.slot)