From 179e8863b3c7a1f056eef5e06fbf4f3796a641ba Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sun, 17 Mar 2024 13:55:15 +0100 Subject: Fix broken intra-doc links to `Sandbox` --- src/program.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/program.rs') diff --git a/src/program.rs b/src/program.rs index 8aa1a4e7..b379dccf 100644 --- a/src/program.rs +++ b/src/program.rs @@ -5,7 +5,7 @@ //! or a specific type. //! //! This API is meant to be a more convenient—although less -//! powerful—alternative to the [`Sandbox`] and [`Application`] traits. +//! powerful—alternative to the [`Application`] traits. //! //! [`Sandbox`]: crate::Sandbox //! @@ -748,8 +748,6 @@ fn with_style( /// /// This trait is implemented both for `&static str` and /// any closure `Fn(&State) -> String`. -/// -/// You can use any of these in [`Program::title`]. pub trait Title { /// Produces the title of the [`Program`]. fn title(&self, state: &State) -> String; -- cgit