From b31be156e3b127f570151bddf306464f3dd385f3 Mon Sep 17 00:00:00 2001 From: GiGaGon <107241144+MeGaGiGaGon@users.noreply.github.com> Date: Sun, 10 Nov 2024 13:42:28 -0800 Subject: [PATCH] Fix alias placed before doc comment --- crates/egui/src/style.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/egui/src/style.rs b/crates/egui/src/style.rs index ecd6a9483c1..0f6c9633ebd 100644 --- a/crates/egui/src/style.rs +++ b/crates/egui/src/style.rs @@ -1014,8 +1014,8 @@ impl Visuals { self.widgets.noninteractive.weak_bg_fill } - #[doc(alias = "grey_out")] /// Returned a "grayed out" version of the given color. + #[doc(alias = "grey_out")] #[inline(always)] pub fn gray_out(&self, color: Color32) -> Color32 { crate::ecolor::tint_color_towards(color, self.fade_out_to_color())