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" }, ]