From a90c0806595a8febbec68bd8e0926dae31b3aedf Mon Sep 17 00:00:00 2001 From: Michael Dorst Date: Wed, 29 Dec 2021 17:38:11 +0000 Subject: [PATCH] Fix `doc_markdown` lints in `bevy_log` (#3476) #3457 adds the `doc_markdown` clippy lint, which checks doc comments to make sure code identifiers are escaped with backticks. This causes a lot of lint errors, so this is one of a number of PR's that will fix those lint errors one crate at a time. This PR fixes lints in the `bevy_log` crate. --- crates/bevy_log/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_log/src/lib.rs b/crates/bevy_log/src/lib.rs index c769a652ec..184b121484 100644 --- a/crates/bevy_log/src/lib.rs +++ b/crates/bevy_log/src/lib.rs @@ -64,7 +64,7 @@ use tracing_subscriber::{prelude::*, registry::Registry, EnvFilter}; #[derive(Default)] pub struct LogPlugin; -/// LogPlugin settings +/// `LogPlugin` settings pub struct LogSettings { /// Filters logs using the [`EnvFilter`] format pub filter: String,