mirror of
https://github.com/bevyengine/bevy
synced 2025-02-16 22:18:33 +00:00
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.
This commit is contained in:
parent
455ab65bce
commit
fd743ec57f
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue