diff options
author | 2024-03-17 13:55:15 +0100 | |
---|---|---|
committer | 2024-03-17 13:55:15 +0100 | |
commit | 179e8863b3c7a1f056eef5e06fbf4f3796a641ba (patch) | |
tree | 082451a3fa4cb432f21dd0f5fe8ad8969db92e4e /src/application.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 'src/application.rs')
-rw-r--r-- | src/application.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/application.rs b/src/application.rs index be0fa0de..48fc672a 100644 --- a/src/application.rs +++ b/src/application.rs @@ -15,9 +15,7 @@ pub use application::{default, Appearance, DefaultStyle}; /// document. /// /// An [`Application`] can execute asynchronous actions by returning a -/// [`Command`] in some of its methods. If you do not intend to perform any -/// background work in your program, the [`Sandbox`] trait offers a simplified -/// interface. +/// [`Command`] in some of its methods. /// /// When using an [`Application`] with the `debug` feature enabled, a debug view /// can be toggled by pressing `F12`. |