Skip to content

Commit 0b3a1c1

Browse files
committed
Fix doc_markdown lints in bevy_text (#3482)
#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_text` crate.
1 parent 073f381 commit 0b3a1c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/bevy_text/src/text2d.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ pub struct QueuedText2d {
107107
entities: Vec<Entity>,
108108
}
109109

110-
/// Updates the TextGlyphs with the new computed glyphs from the layout
110+
/// Updates the `TextGlyphs` with the new computed glyphs from the layout
111111
#[allow(clippy::too_many_arguments, clippy::type_complexity)]
112112
pub fn text2d_system(
113113
mut queued_text: Local<QueuedText2d>,

0 commit comments

Comments
 (0)