From f0242bda233eccbda9974b036ecea12c96fd29d9 Mon Sep 17 00:00:00 2001 From: Yotam Ofek Date: Thu, 10 Nov 2022 22:31:08 +0200 Subject: [PATCH] appender: Fix typo in RollingFileAppender docs (#2375) The `MakeWriter` trait comes from the `tracing-subscriber` crate, not `tracing-appender`. --- tracing-appender/src/rolling.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracing-appender/src/rolling.rs b/tracing-appender/src/rolling.rs index 8e630cc9e1..15ae35ba06 100644 --- a/tracing-appender/src/rolling.rs +++ b/tracing-appender/src/rolling.rs @@ -46,7 +46,7 @@ pub use builder::{Builder, InitError}; /// writes without blocking the current thread. /// /// Additionally, `RollingFileAppender` also implements the [`MakeWriter`] -/// trait from `tracing-appender`, so it may also be used +/// trait from `tracing-subscriber`, so it may also be used /// directly, without [`NonBlocking`]. /// /// [write]: std::io::Write