ANW-41 Docs: fix four broken rustdoc intra-doc links

cargo doc --no-deps is warning-free. No behaviour change.
This commit is contained in:
Andreas Brenner 2026-07-24 23:41:33 +03:00
parent 134b1d44b3
commit 8894ea0c7b
3 changed files with 4 additions and 4 deletions

View file

@ -46,7 +46,7 @@ pub struct DriftShape {
/// `"bool"`, `"number"`, `"string"`, `"date"`, `"list"`, `"mapping"`. /// `"bool"`, `"number"`, `"string"`, `"date"`, `"list"`, `"mapping"`.
pub shape: &'static str, pub shape: &'static str,
pub count: usize, pub count: usize,
/// Up to [`DRIFT_SAMPLES_PER_SHAPE`] vault-relative paths exhibiting /// Up to `DRIFT_SAMPLES_PER_SHAPE` vault-relative paths exhibiting
/// this shape, in the order they were scanned. /// this shape, in the order they were scanned.
pub samples: Vec<String>, pub samples: Vec<String>,
} }

View file

@ -11,7 +11,7 @@
//! `__in` / `__all` are comma-separated; unknown operators are `400`. //! `__in` / `__all` are comma-separated; unknown operators are `400`.
//! //!
//! Predicates are evaluated by iterating the in-memory [`NoteStore`] and //! Predicates are evaluated by iterating the in-memory [`NoteStore`] and
//! applying each [`Predicate::matches`] in turn. At the documented scale //! applying each [`Predicate`] in turn. At the documented scale
//! (low-thousands-of-notes vaults) this is sub-millisecond; see //! (low-thousands-of-notes vaults) this is sub-millisecond; see
//! [[ADR-009 Reverse ADR-002 In-Memory Evaluation No Tantivy]] for the //! [[ADR-009 Reverse ADR-002 In-Memory Evaluation No Tantivy]] for the
//! call to keep evaluation in-memory rather than carrying a Tantivy index. //! call to keep evaluation in-memory rather than carrying a Tantivy index.

View file

@ -4,7 +4,7 @@
//! [`notify::RecommendedWatcher`] over the vault root. Each native event is //! [`notify::RecommendedWatcher`] over the vault root. Each native event is
//! pushed into a Tokio channel; [`run_debouncer`] drains the channel, //! pushed into a Tokio channel; [`run_debouncer`] drains the channel,
//! classifies events into [`WatchAction`]s, coalesces a 100 ms window's //! classifies events into [`WatchAction`]s, coalesces a 100 ms window's
//! worth into one [`Batch`], and casts the batch to the `index_writer` //! worth into one [`WatchBatch`], and casts the batch to the `index_writer`
//! named process for a single [`crate::store::NoteStore`] write. //! named process for a single [`crate::store::NoteStore`] write.
//! //!
//! See [[ADR-003 Filesystem Change Tracking]] for the event model. //! See [[ADR-003 Filesystem Change Tracking]] for the event model.
@ -27,7 +27,7 @@ use crate::vault;
/// One path-scoped action derived from a native filesystem event. Always /// One path-scoped action derived from a native filesystem event. Always
/// carries a vault-relative, forward-slash-normalized path string -- the /// carries a vault-relative, forward-slash-normalized path string -- the
/// same form [`vault::Note.path`] uses. /// same form [`vault::Note::path`] uses.
/// ///
/// The `*Tree` variants carry a directory instead of a note. Native events /// The `*Tree` variants carry a directory instead of a note. Native events
/// name only the directory when one is created, removed, or renamed; the /// name only the directory when one is created, removed, or renamed; the