From 6fdbd688fab83d1a9e1685550dcb0c61f349c34a Mon Sep 17 00:00:00 2001 From: Nicolas Date: Wed, 2 Oct 2024 20:44:42 +0200 Subject: [PATCH] fix lint --- crates/egui/src/widgets/text_edit/builder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/egui/src/widgets/text_edit/builder.rs b/crates/egui/src/widgets/text_edit/builder.rs index 4dbbe8b0c8f..f4824a38117 100644 --- a/crates/egui/src/widgets/text_edit/builder.rs +++ b/crates/egui/src/widgets/text_edit/builder.rs @@ -204,7 +204,7 @@ impl<'t> TextEdit<'t> { } /// Set the background color of the [`TextEdit`]. The default is [`crate::Visuals::extreme_bg_color`]. - // TODO: remove this once #3284 is implemented + // TODO(bircni): remove this once #3284 is implemented #[inline] pub fn background_color(mut self, color: Color32) -> Self { self.background_color = Some(color);