Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tracing-subscriber/src/layer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
//! # fn new() -> Self { Self {} }
//! # }
//! # impl MySubscriber {
//! # fn new() -> Self { Self { }}
//! # fn new() -> Self { Self {} }
//! # }
//!
//! let subscriber = MySubscriber::new()
Expand Down Expand Up @@ -107,7 +107,7 @@
//! # fn enabled(&self, _: &Metadata) -> bool { false }
//! # fn enter(&self, _: &Id) {}
//! # fn exit(&self, _: &Id) {}
//! }
//! # }
//! # impl MyLayer {
//! # fn new() -> Self { Self {} }
//! # }
Expand All @@ -118,7 +118,7 @@
//! # fn new() -> Self { Self {} }
//! # }
//! # impl MySubscriber {
//! # fn new() -> Self { Self { }}
//! # fn new() -> Self { Self {} }
//! # }
//!
//! let subscriber = MySubscriber::new()
Expand Down