add missing derive(Debug) in lib.rs docs

This commit is contained in:
JL710 2024-04-30 10:28:06 +02:00 committed by GitHub
parent 24501fd73b
commit f6c698b2dd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -51,6 +51,7 @@
//! We start by modelling the __state__ of our application:
//!
//! ```
//! #[derive(Default)]
//! struct Counter {
//! // The counter value
//! value: i32,