summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar JL710 <76447362+JL710@users.noreply.github.com>2024-04-30 10:28:06 +0200
committerLibravatar GitHub <noreply@github.com>2024-04-30 10:28:06 +0200
commitf6c698b2dd09288203e5732c2051661ee0580e76 (patch)
tree5dba89a756dd84029d4dddbf6f489c94c945babc
parent24501fd73b5ae884367a2d112ff44625058b876b (diff)
downloadiced-f6c698b2dd09288203e5732c2051661ee0580e76.tar.gz
iced-f6c698b2dd09288203e5732c2051661ee0580e76.tar.bz2
iced-f6c698b2dd09288203e5732c2051661ee0580e76.zip
add missing derive(Debug) in lib.rs docs
-rw-r--r--src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index c96c28a3..7517dd14 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -51,6 +51,7 @@
//! We start by modelling the __state__ of our application:
//!
//! ```
+//! #[derive(Default)]
//! struct Counter {
//! // The counter value
//! value: i32,