Fix lints for Rust 1.80

This commit is contained in:
Héctor Ramón Jiménez 2024-07-26 11:01:33 +02:00
parent f18f08bd61
commit 555ee3e9c6
No known key found for this signature in database
GPG key ID: 4C07CEC81AFA161F
8 changed files with 15 additions and 15 deletions

View file

@ -52,7 +52,7 @@ where
/// * the computed [`Layout`] of the [`Overlay`]
/// * the current cursor position
/// * a mutable `Message` list, allowing the [`Overlay`] to produce
/// new messages based on user interaction.
/// new messages based on user interaction.
/// * the `Renderer`
/// * a [`Clipboard`], if available
///

View file

@ -27,11 +27,11 @@ use crate::{Clipboard, Length, Rectangle, Shell, Size, Vector};
/// widget:
///
/// - [`bezier_tool`], a Paint-like tool for drawing Bézier curves using
/// [`lyon`].
/// [`lyon`].
/// - [`custom_widget`], a demonstration of how to build a custom widget that
/// draws a circle.
/// draws a circle.
/// - [`geometry`], a custom widget showcasing how to draw geometry with the
/// `Mesh2D` primitive in [`iced_wgpu`].
/// `Mesh2D` primitive in [`iced_wgpu`].
///
/// [examples]: https://github.com/iced-rs/iced/tree/0.12/examples
/// [`bezier_tool`]: https://github.com/iced-rs/iced/tree/0.12/examples/bezier_tool