From 3add56f81b09350c0320ac08d15bef29808c76c9 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Sun, 30 Jun 2024 14:35:46 +0200 Subject: [PATCH] Fix wrong comment --- crates/epaint/src/text/text_layout_types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/epaint/src/text/text_layout_types.rs b/crates/epaint/src/text/text_layout_types.rs index fde36ec6..7011e0c7 100644 --- a/crates/epaint/src/text/text_layout_types.rs +++ b/crates/epaint/src/text/text_layout_types.rs @@ -556,7 +556,7 @@ pub struct RowVisuals { /// The range of vertices in the mesh that contain glyphs (as opposed to background, underlines, strikethorugh, etc). /// - /// The glyph vertices comes before backgrounds (if any), and after any underlines and strikethrough. + /// The glyph vertices comes after backgrounds (if any), but before any underlines and strikethrough. pub glyph_vertex_range: Range, }