summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-07-14 22:51:52 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-07-14 22:51:52 +0200
commitfd0abe18d0cfde614cc779fa0da71c4e07107b59 (patch)
tree12c028c04b3525244815a1d9f41267253557227e /src/lib.rs
parentd9a29f51760efc0b2a9d3b0947c15c51897a7a5e (diff)
downloadiced-fd0abe18d0cfde614cc779fa0da71c4e07107b59.tar.gz
iced-fd0abe18d0cfde614cc779fa0da71c4e07107b59.tar.bz2
iced-fd0abe18d0cfde614cc779fa0da71c4e07107b59.zip
Implement `application::Update` for `()`
Diffstat (limited to '')
-rw-r--r--src/lib.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 7ced9a57..138f0b04 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -345,8 +345,6 @@ pub type Result = std::result::Result<(), Error>;
///
/// This is equivalent to chaining [`application()`] with [`Application::run`].
///
-/// [`program`]: program()
-///
/// # Example
/// ```no_run
/// use iced::widget::{button, column, text, Column};