Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typos in tracing-subscriber #3021

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion tracing-subscriber/src/fmt/format/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ use fmt::{Debug, Display};
///
/// # Examples
///
/// This example re-implements a simiplified version of this crate's [default
/// This example re-implements a simplified version of this crate's [default
/// formatter]:
///
/// ```rust
Expand Down
4 changes: 2 additions & 2 deletions tracing-subscriber/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//! scoped, structured, and async-aware diagnostics. The [`Collect`] trait
//! represents the functionality necessary to collect this trace data. This
//! crate contains tools for composing subscribers out of smaller units of
//! behaviour, and batteries-included implementations of common subscriber
//! behavior, and batteries-included implementations of common subscriber
//! functionality.
//!
//! `tracing-subscriber` is intended for use by both `Collector` authors and
Expand All @@ -28,7 +28,7 @@
//!
//! In addition, the [`Filter`] trait defines an interface for filtering what
//! spans and events are recorded by a particular subscriber. This allows different
//! [`Subscribe`] implementationss to handle separate subsets of the trace data
//! [`Subscribe`] implementations to handle separate subsets of the trace data
//! emitted by a program. See the [documentation on per-subscriber
//! filtering][psf] for more information on using [`Filter`]s.
//!
Expand Down
2 changes: 1 addition & 1 deletion tracing-subscriber/src/prelude.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//! This brings into scope a number of extension traits that define methods on
//! types defined here and in other crates.

// apparently `as _` reexpoorts now generate `unreachable_pub` linting? which
// apparently `as _` reexports now generate `unreachable_pub` linting? which
// seems wrong to me...
#![allow(unreachable_pub)]
pub use crate::field::{MakeExt as _, RecordFields as _};
Expand Down