Skip to content

Commit

Permalink
appender: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
cfilipescu committed Mar 7, 2024
1 parent bd34e08 commit c324e37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tracing-appender/src/rolling/builder.rs
Expand Up @@ -43,13 +43,13 @@ impl Builder {
/// | [`filename_prefix`] | `""` | By default, log file names will not have a prefix. |
/// | [`filename_suffix`] | `""` | By default, log file names will not have a suffix. |
/// | [`max_log_files`] | `None` | By default, there is no limit for maximum log file count. |
/// | [`max_files_size`] | `None` | By default, there is no limit for maximum log file size. |
/// | [`max_file_size`] | `None` | By default, there is no limit for maximum log file size. |
///
/// [`rotation`]: Self::rotation
/// [`filename_prefix`]: Self::filename_prefix
/// [`filename_suffix`]: Self::filename_suffix
/// [`max_log_files`]: Self::max_log_files
/// ['max_files_size`]: Self::max_files_size
/// ['max_file_size`]: Self::max_file_size
#[must_use]
pub const fn new() -> Self {
Self {
Expand Down

0 comments on commit c324e37

Please sign in to comment.