From 6aa274cbdfaaf9c0a887399ece717d99f10694c9 Mon Sep 17 00:00:00 2001 From: Varphone Wong Date: Wed, 17 Jul 2024 17:01:19 +0800 Subject: [PATCH] `epaint`: Fix lint check --- crates/epaint/src/tessellator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/epaint/src/tessellator.rs b/crates/epaint/src/tessellator.rs index 6741ffb29..dc6485993 100644 --- a/crates/epaint/src/tessellator.rs +++ b/crates/epaint/src/tessellator.rs @@ -1573,7 +1573,7 @@ impl Tessellator { let stroke_color = match stroke.color { ColorMode::Solid(color) => color, ColorMode::UV(callback) => { - // TODO: Currently, CircleShape does not support PathStroke. + // TODO(emilk): Currently, CircleShape does not support PathStroke. // As a workaround, the stroke color is set to the center color. // This needs to be revisited once CircleShape gains PathStroke support. callback(Rect::from_center_size(center, Vec2::splat(radius)), center)