Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: remove unneeded duplicate words from Rust files #4243

Merged
merged 1 commit into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/src/raw/adapters/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
//! # Available Adapters
//!
//! - [`kv::Adapter`]: Adapter for Key Value Services like `redis`.
//! - [`typed_kv::Adapter`]: Adapter key key value services that in-memory.
//! - [`typed_kv::Adapter`]: Adapter key value services that in-memory.

pub mod kv;
pub mod typed_kv;
2 changes: 1 addition & 1 deletion core/src/raw/adapters/typed_kv/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ use crate::raw::oio::HierarchyLister;
use crate::raw::*;
use crate::*;

/// The typed kv backend which implements Accessor for for typed kv adapter.
/// The typed kv backend which implements Accessor for typed kv adapter.
#[derive(Debug, Clone)]
pub struct Backend<S: Adapter> {
kv: Arc<S>,
Expand Down
2 changes: 1 addition & 1 deletion core/src/types/metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ flags! {
ContentType,
/// Key for etag.
Etag,
/// Key for last last modified.
/// Key for last modified.
LastModified,
/// Key for version.
Version,
Expand Down
Loading