1515//! will be created hourly
1616//! - [`Rotation::daily()`][daily]: A new log file in the format of `some_directory/log_file_name_prefix.yyyy-MM-dd`
1717//! will be created daily
18- //! - [`Rotation::never()`][never]: This will result in log file located at `some_directory/log_file_name`
18+ //! - [`Rotation::never()`][never() ]: This will result in log file located at `some_directory/log_file_name`
1919//!
2020//!
2121//! # Examples
@@ -42,8 +42,8 @@ use time::{format_description, Duration, OffsetDateTime, Time};
4242/// block on write operations. It may be used with [`NonBlocking`] to perform
4343/// writes without blocking the current thread.
4444///
45- /// Additionally, `RollingFileAppender` also implements the [`MakeWriter`
46- /// trait][make_writer] from `tracing-appender`, so it may also be used
45+ /// Additionally, `RollingFileAppender` also implements the [`MakeWriter`]
46+ /// trait from `tracing-appender`, so it may also be used
4747/// directly, without [`NonBlocking`].
4848///
4949/// [write]: std::io::Write
@@ -79,7 +79,7 @@ use time::{format_description, Duration, OffsetDateTime, Time};
7979/// # }
8080/// ```
8181///
82- /// [make_writer] tracing_subscriber::fmt::writer::MakeWriter
82+ /// [`MakeWriter`]: tracing_subscriber::fmt::writer::MakeWriter
8383#[ derive( Debug ) ]
8484pub struct RollingFileAppender {
8585 state : Inner ,
@@ -119,7 +119,7 @@ impl RollingFileAppender {
119119 /// - [`Rotation::minutely()`][minutely],
120120 /// - [`Rotation::hourly()`][hourly],
121121 /// - [`Rotation::daily()`][daily],
122- /// - [`Rotation::never()`][never]
122+ /// - [`Rotation::never()`][never() ]
123123 ///
124124 ///
125125 /// # Examples
0 commit comments