Skip to content

Commit

Permalink
Fix doc_markdown lints in bevy_pbr (bevyengine#3477)
Browse files Browse the repository at this point in the history
bevyengine#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_pbr` crate.
  • Loading branch information
mfdorst authored and mockersf committed Jan 1, 2022
1 parent 5d647f0 commit 12d462b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_pbr/src/wireframe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ fn extract_wireframes(mut commands: Commands, query: Query<Entity, With<Wirefram
}
}

/// Controls whether an entity should rendered in wireframe-mode if the [WireframePlugin] is enabled
/// Controls whether an entity should rendered in wireframe-mode if the [`WireframePlugin`] is enabled
#[derive(Component, Debug, Clone, Default, Reflect)]
#[reflect(Component)]
pub struct Wireframe;
Expand Down

0 comments on commit 12d462b

Please sign in to comment.