Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed May 27, 2024
1 parent b7ff966 commit 64ac775
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/persist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Option<&'a [u8]>, 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)
}
}

Expand Down

0 comments on commit 64ac775

Please sign in to comment.