diff options
author | 2024-03-17 13:55:15 +0100 | |
---|---|---|
committer | 2024-03-17 13:55:15 +0100 | |
commit | 179e8863b3c7a1f056eef5e06fbf4f3796a641ba (patch) | |
tree | 082451a3fa4cb432f21dd0f5fe8ad8969db92e4e /src/program.rs | |
parent | 846d76cd3f3f2faae5efbb3fda2a2bcb3b064481 (diff) | |
download | iced-179e8863b3c7a1f056eef5e06fbf4f3796a641ba.tar.gz iced-179e8863b3c7a1f056eef5e06fbf4f3796a641ba.tar.bz2 iced-179e8863b3c7a1f056eef5e06fbf4f3796a641ba.zip |
Fix broken intra-doc links to `Sandbox`
Diffstat (limited to '')
-rw-r--r-- | src/program.rs | 4 |
1 files changed, 1 insertions, 3 deletions
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<P: Definition>( /// /// 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<State> { /// Produces the title of the [`Program`]. fn title(&self, state: &State) -> String; |