This is an automated email from the ASF dual-hosted git repository. xuanwo pushed a commit to branch add-pg-support in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git
commit 03c30e7837bccfd2fd75cdc6e647230cc9468638 Author: Xuanwo <[email protected]> AuthorDate: Tue Aug 8 14:36:51 2023 +0800 Fix typo Signed-off-by: Xuanwo <[email protected]> --- core/src/raw/adapters/kv/api.rs | 2 +- core/src/raw/adapters/mod.rs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/core/src/raw/adapters/kv/api.rs b/core/src/raw/adapters/kv/api.rs index dbe5f8f5f..0c1ad4f95 100644 --- a/core/src/raw/adapters/kv/api.rs +++ b/core/src/raw/adapters/kv/api.rs @@ -31,7 +31,7 @@ use crate::Scheme; /// By implement this trait, any kv service can work as an OpenDAL Service. #[async_trait] pub trait Adapter: Send + Sync + Debug + Unpin + 'static { - /// Return the medata of this key value accessor. + /// Return the metadata of this key value accessor. fn metadata(&self) -> Metadata; /// Get a key from service. diff --git a/core/src/raw/adapters/mod.rs b/core/src/raw/adapters/mod.rs index 9864797c0..73dc67bf6 100644 --- a/core/src/raw/adapters/mod.rs +++ b/core/src/raw/adapters/mod.rs @@ -43,7 +43,8 @@ //! //! # Available Adapters //! -//! - [`kv::Adapter`]: Adapter for Key Value Services like in-memory map, `redis`. +//! - [`kv::Adapter`]: Adapter for Key Value Services like `redis`. +//! - [`typed_kv::Adapter`]: Adapter key key value services that in-memory. pub mod kv; pub mod typed_kv;
