Skip to content

Commit

Permalink
docs: fix something in docs (#3353)
Browse files Browse the repository at this point in the history
  • Loading branch information
my-vegetable-has-exploded authored Oct 22, 2023
1 parent c7bfe23 commit 403fa7a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/docs/internals/accessor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@
//!
//! ```ignore
//! pub trait Accessor {
//! fn create<'async>(
//! fn create_dir<'async>(
//! &'async self,
//! ) -> Pin<Box<dyn core::future::Future<Output = ()> + Send + 'async>>
//! ) -> Pin<Box<dyn core::future::Future<Output = Result()> + Send + 'async>>
//! where Self: Sync + 'async;
//! }
//! ```
Expand Down
1 change: 1 addition & 0 deletions core/src/services/tikv/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ use crate::Scheme;
use crate::*;

/// TiKV backend builder
#[doc = include_str!("docs.md")]
#[derive(Clone, Default)]
pub struct TikvBuilder {
/// network address of the TiKV service.
Expand Down

0 comments on commit 403fa7a

Please sign in to comment.