diff options
author | 2024-04-30 10:28:06 +0200 | |
---|---|---|
committer | 2024-04-30 10:28:06 +0200 | |
commit | f6c698b2dd09288203e5732c2051661ee0580e76 (patch) | |
tree | 5dba89a756dd84029d4dddbf6f489c94c945babc | |
parent | 24501fd73b5ae884367a2d112ff44625058b876b (diff) | |
download | iced-f6c698b2dd09288203e5732c2051661ee0580e76.tar.gz iced-f6c698b2dd09288203e5732c2051661ee0580e76.tar.bz2 iced-f6c698b2dd09288203e5732c2051661ee0580e76.zip |
add missing derive(Debug) in lib.rs docs
-rw-r--r-- | src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -51,6 +51,7 @@ //! We start by modelling the __state__ of our application: //! //! ``` +//! #[derive(Default)] //! struct Counter { //! // The counter value //! value: i32, |