From 14fcf5067767ff7d634d52856ae6a08b6b7a3f82 Mon Sep 17 00:00:00 2001 From: Fintan Halpenny Date: Mon, 15 Sep 2025 10:34:22 +0100 Subject: [PATCH] docs: fix doc string linking --- crates/radicle-remote-helper/src/push/canonical.rs | 6 +++--- crates/radicle-term/src/io.rs | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/crates/radicle-remote-helper/src/push/canonical.rs b/crates/radicle-remote-helper/src/push/canonical.rs index 545dcab7..4073a090 100644 --- a/crates/radicle-remote-helper/src/push/canonical.rs +++ b/crates/radicle-remote-helper/src/push/canonical.rs @@ -30,9 +30,9 @@ where /// In some cases, it ensures that the head commit is attempting to converge /// with the set of commits of the other [`Did`]s. /// - /// If a quorum is found, then it is also ensured that the new [`head`] is a - /// descendant of the current canonical commit, otherwise the commits are - /// considered diverging. + /// If a quorum is found, then it is also ensured that the new head commit + /// is a descendant of the current canonical commit, otherwise the commits + /// are considered diverging. /// /// # Errors /// diff --git a/crates/radicle-term/src/io.rs b/crates/radicle-term/src/io.rs index 6a50b7fb..38e10708 100644 --- a/crates/radicle-term/src/io.rs +++ b/crates/radicle-term/src/io.rs @@ -49,6 +49,8 @@ pub static CONFIG: LazyLock = LazyLock::new(|| RenderConfig { /// Target for paint operations. /// /// This tells a [`Spinner`] object where to paint to. +/// +/// [`Spinner`]: crate::Spinner #[derive(Clone)] pub enum PaintTarget { Stdout,