Skip to content

Commit

Permalink
fix: doc tests
Browse files Browse the repository at this point in the history
  • Loading branch information
soehrl committed Nov 14, 2024
1 parent 07064ff commit 0632741
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tracing-tape-recorder/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//! ## Setup
//! First, add the the [tracing], [tracing-subscriber](tracing_subscriber), and
//! [tracing-tape-recorder](self) dependencies to your application:
//! ```
//! ```sh
//! cargo add tracing tracing-subscriber tracing-tape-recorder
//! ```
//! Then, you can use the [TapeRecorder] layer in your application:
Expand All @@ -16,7 +16,7 @@
//! use tracing_subscriber::{fmt, layer::SubscriberExt, Registry};
//! use tracing_tape_recorder::TapeRecorder;
//!
//! let subscriber = Registry::default().with(TapeRecorder::default())
//! let subscriber = Registry::default().with(TapeRecorder::default());
//! let guard = tracing::subscriber::set_default(subscriber);
//!
//! // ...
Expand All @@ -27,7 +27,7 @@
//! name based on the executable name and the current time. This file can be
//! viewed using the [trace-deck](https://crates.io/crates/trace-deck) which is available
//! [online](https://trace-deck.oehrl.dev) or can be installed locally using
//! ```
//! ```sh
//! cargo install trace-deck
//! ```
//! Have a look at the [getting stated
Expand Down

0 comments on commit 0632741

Please sign in to comment.