Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
noib3 committed Nov 23, 2023
1 parent 011c96a commit 510c8a9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/algos/fzf/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ mod distance;
mod fzf;
#[cfg(feature = "fzf-v1")]
mod fzf_v1;
#[cfg(feature = "fzf-v1")]
#[cfg(feature = "fzf-v2")]
mod fzf_v2;
mod parser;
mod query;
Expand All @@ -62,7 +62,7 @@ use distance::*;
use fzf::*;
#[cfg(feature = "fzf-v1")]
pub use fzf_v1::FzfV1;
#[cfg(feature = "fzf-v1")]
#[cfg(feature = "fzf-v2")]
pub use fzf_v2::FzfV2;
pub use parser::*;
pub use query::FzfQuery;
Expand Down
4 changes: 2 additions & 2 deletions src/algos/fzf/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ use core::fmt::Write;

/// A parsed fzf query.
///
/// This struct is created by the [`parse`](FzfParser::parse) method on
/// [`FzfParser`]. See its documentation for more.
/// This struct is created by the [`parse`](super::FzfParser::parse) method on
/// [`FzfParser`](super::FzfParser). See its documentation for more.
#[derive(Clone, Copy)]
pub struct FzfQuery<'a> {
pub(super) search_mode: SearchMode<'a>,
Expand Down

0 comments on commit 510c8a9

Please sign in to comment.