From 46cca12a2c72ddc19bb16a334309db5c7cce650f 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 ba0eecb8e..19a92fe87 100644 --- a/crates/epaint/src/tessellator.rs +++ b/crates/epaint/src/tessellator.rs @@ -1506,7 +1506,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)