Merge pull request #2412 from JL710/patch-1

add missing derive(Debug) in lib.rs docs
This commit is contained in:
Héctor Ramón 2024-05-02 06:40:52 +02:00 committed by GitHub
commit 72b78a9a8d
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,