From 64ac775cb618b7d0023faf24dfc51d8b98a34948 Mon Sep 17 00:00:00 2001 From: ivmarkov Date: Mon, 27 May 2024 11:14:38 +0000 Subject: [PATCH] typo --- src/persist.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/persist.rs b/src/persist.rs index cc89a37..4896799 100644 --- a/src/persist.rs +++ b/src/persist.rs @@ -337,15 +337,15 @@ impl DirKvBlobStore { #[cfg(feature = "std")] impl KvBlobStore for DirKvBlobStore { async fn load<'a>(&mut self, key: &str, buf: &'a mut [u8]) -> Result, Error> { - DirKvStore::load(self, key, buf) + DirKvBlobStore::load(self, key, buf) } async fn store(&mut self, key: &str, value: &[u8]) -> Result<(), Error> { - DirKvStore::store(self, key, value) + DirKvBlobStore::store(self, key, value) } async fn remove(&mut self, key: &str) -> Result<(), Error> { - DirKvStore::remove(self, key) + DirKvBlobStore::remove(self, key) } }