From 3aa77d4d70e01759df61614e12e9fdd0f902db3e Mon Sep 17 00:00:00 2001 From: Andrew Halle Date: Thu, 13 Apr 2023 15:01:11 -0700 Subject: [PATCH] Fix typo (#2548) **This commit** - tyoe -> type. Co-authored-by: Eliza Weisman --- tracing-subscriber/src/fmt/writer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracing-subscriber/src/fmt/writer.rs b/tracing-subscriber/src/fmt/writer.rs index 3fe9455664..2b9f9e973e 100644 --- a/tracing-subscriber/src/fmt/writer.rs +++ b/tracing-subscriber/src/fmt/writer.rs @@ -16,7 +16,7 @@ use tracing_core::Metadata; /// This trait is already implemented for function pointers and /// immutably-borrowing closures that return an instance of [`io::Write`], such /// as [`io::stdout`] and [`io::stderr`]. Additionally, it is implemented for -/// [`std::sync::Mutex`][mutex] when the tyoe inside the mutex implements +/// [`std::sync::Mutex`][mutex] when the type inside the mutex implements /// [`io::Write`]. /// /// # Examples