Skip to content

Commit fd743ec

Browse files
committed
Fix doc_markdown lints in bevy_pbr (#3477)
#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.
1 parent 455ab65 commit fd743ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/bevy_pbr/src/wireframe.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ fn extract_wireframes(mut commands: Commands, query: Query<Entity, With<Wirefram
5353
}
5454
}
5555

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

0 commit comments

Comments
 (0)