Skip to content

Commit 7f2ca54

Browse files
committed
Apply clippy's suggestions for doc_lazy_continuation
1 parent 5c67a97 commit 7f2ca54

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

spdlog/src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ pub fn set_default_logger(logger: Arc<Logger>) {
506506
/// - Specifies the level filter for ***loggers with the specified name***.
507507
///
508508
/// Possible inputs: `logger-name=info`, `network=warn`, `core=info`,
509-
/// `gui=critical`, etc.
509+
/// `gui=critical`, etc.
510510
///
511511
/// ---
512512
///
@@ -533,15 +533,15 @@ pub fn set_default_logger(logger: Arc<Logger>) {
533533
/// - `off,*=ERROR`
534534
///
535535
/// Specifies the level filter for the default logger as `LevelFilter::Off`,
536-
/// the rest of loggers as `LevelFilter::MoreSevereEqual(Level::Error)`.
536+
/// the rest of loggers as `LevelFilter::MoreSevereEqual(Level::Error)`.
537537
///
538538
/// ---
539539
///
540540
/// - `gui=warn,network=trace`
541541
///
542542
/// Specifies the level filter for loggers with name "gui" as
543-
/// `LevelFilter::MoreSevereEqual(Level::Warn)`, loggers with name "network" as
544-
/// `LevelFilter::MoreSevereEqual(Level::Trace)`.
543+
/// `LevelFilter::MoreSevereEqual(Level::Warn)`, loggers with name "network"
544+
/// as `LevelFilter::MoreSevereEqual(Level::Trace)`.
545545
///
546546
/// ---
547547
///

spdlog/src/re_export.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
/// appropriately so that `spdlog-rs` can receive logs.
1717
///
1818
/// - To enable the `log` crate compatibility layer proxy, call
19-
/// [`spdlog::init_log_crate_proxy`].
19+
/// [`spdlog::init_log_crate_proxy`].
2020
///
2121
/// - To configure `log` crate's own level filter, call
2222
/// [`re_export::log::set_max_level`] with [`re_export::log::LevelFilter`].

0 commit comments

Comments
 (0)