From 7bebbc901917d40a92f9ceed92ee5b2d8f3681b9 Mon Sep 17 00:00:00 2001 From: 189024609 <189024609+user583953@users.noreply.github.com> Date: Fri, 21 Feb 2025 21:49:51 +0100 Subject: [PATCH] build: simplify disallowed-* message --- clippy.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clippy.toml b/clippy.toml index bb4c7e7..ea830ad 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1,7 +1,7 @@ disallowed-types = [ - { path = "iced::widget::Text", reason = "with some fonts text renders as squares without advanced shaping (see #523), instead use [`crate::gui::widgets::text`]" }, + { path = "iced::widget::Text", reason = "Use [`crate::gui::widgets::text`] instead. For further details, see #523 and #858" }, ] disallowed-methods= [ - { path = "iced::widget::text", reason = "with some fonts text renders as squares without advanced shaping (see #523), instead use [`crate::gui::widgets::text`]" }, + { path = "iced::widget::text", reason = "Use [`crate::gui::widgets::text`] instead. For further details, see #523 and #858" }, ]