From df0ce53d8400bb4fa98d75759f4f240ddb5bc1df Mon Sep 17 00:00:00 2001 From: qwjyh Date: Tue, 21 May 2024 14:44:53 +0900 Subject: [PATCH] fixup! replace HashMap with BTreeMap in Storages and Backups --- src/storages.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storages.rs b/src/storages.rs index fd02ef3..8137546 100644 --- a/src/storages.rs +++ b/src/storages.rs @@ -135,7 +135,7 @@ pub trait StorageExt { fn local_info(&self, device: &devices::Device) -> Option<&local_info::LocalInfo>; /// Get mount path of `self` on `device`. - /// `storages` is a `HashMap` with key of storage name and value of the storage. + /// `storages` is a `BTreeMap` with key of storage name and value of the storage. fn mount_path(&self, device: &devices::Device) -> Result; /// Add local info of `device` to `self`.