summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-03-17 13:57:53 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-03-17 13:57:53 +0100
commit7e1ef7d150aa3d4d05942eea2706348f20d61d64 (patch)
treecbb4264479f151a5017c6b236943de059dd4ac97 /src
parent179e8863b3c7a1f056eef5e06fbf4f3796a641ba (diff)
downloadiced-7e1ef7d150aa3d4d05942eea2706348f20d61d64.tar.gz
iced-7e1ef7d150aa3d4d05942eea2706348f20d61d64.tar.bz2
iced-7e1ef7d150aa3d4d05942eea2706348f20d61d64.zip
Fix new doc test in root module
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 1f2b8c93..c2177484 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -137,6 +137,13 @@
//! And that's everything! We just wrote a whole user interface. Let's run it:
//!
//! ```no_run
+//! # #[derive(Default)]
+//! # struct Counter;
+//! # impl Counter {
+//! # fn update(&mut self, _message: ()) {}
+//! # fn view(&self) -> iced::Element<()> { unimplemented!() }
+//! # }
+//! #
//! fn main() -> iced::Result {
//! iced::run("A cool counter", Counter::update, Counter::view)
//! }