From d1fbaad6509c936461b206fa5a82f4e80a267174 Mon Sep 17 00:00:00 2001 From: Prateek Sunal Date: Mon, 15 Jan 2024 18:25:38 +0530 Subject: [PATCH] chore: lint fixes acc to rustfmt --- src/rust/src/decoder/window.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/rust/src/decoder/window.rs b/src/rust/src/decoder/window.rs index fbd4d024c..868709193 100644 --- a/src/rust/src/decoder/window.rs +++ b/src/rust/src/decoder/window.rs @@ -441,13 +441,13 @@ impl PenStyle { }; let color = PenColor { - /// White(2,2,2) i.e 10,10,10 i.e 42 + // White(2,2,2) i.e 10,10,10 i.e 42 fg_color: 42, fg_opacity: Opacity::Solid, - /// Either N/A or black, still always 0 + // Either N/A or black, still always 0 bg_color: 0, bg_opacity, - /// Either N/A or black, still always 0 + // Either N/A or black, still always 0 edge_color: 0, };