fix(docs): resolve all broken rustdoc intra-doc links

Fix direct path references for in-scope items (GammaStrategy,
CompletedTrial) and convert feature-gated items to plain backtick
formatting so docs build cleanly without --all-features.
This commit is contained in:
Manuel Raimann
2026-02-12 15:47:53 +01:00
parent f0798ca58a
commit 38a20bbc42
7 changed files with 18 additions and 18 deletions
+1 -1
View File
@@ -224,7 +224,7 @@ where
impl<V: PartialOrd + Clone + serde::Serialize> Study<V> {
/// Export trials as a pretty-printed JSON array to a file.
///
/// Each element in the array is a serialized [`CompletedTrial`].
/// Each element in the array is a serialized [`crate::CompletedTrial`].
/// Requires the `serde` feature.
///
/// # Errors
+1 -1
View File
@@ -225,7 +225,7 @@ where
///
/// This is the most general constructor — all other constructors
/// delegate to this one. Use it when you need a non-default storage
/// backend (e.g., [`JournalStorage`](crate::storage::JournalStorage)).
/// backend (e.g., `JournalStorage`).
///
/// # Arguments
///