diff options
author | 2024-07-26 11:01:33 +0200 | |
---|---|---|
committer | 2024-07-26 11:01:33 +0200 | |
commit | 555ee3e9c66010c9a90c3ef55d61fbffd48e669d (patch) | |
tree | 0e11497452dbf53332cdf0a2e7f946e2157e2aea /core/src/widget.rs | |
parent | f18f08bd617edbf58787ec4f379aa52c0ef292e2 (diff) | |
download | iced-555ee3e9c66010c9a90c3ef55d61fbffd48e669d.tar.gz iced-555ee3e9c66010c9a90c3ef55d61fbffd48e669d.tar.bz2 iced-555ee3e9c66010c9a90c3ef55d61fbffd48e669d.zip |
Fix lints for Rust 1.80
Diffstat (limited to 'core/src/widget.rs')
-rw-r--r-- | core/src/widget.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/src/widget.rs b/core/src/widget.rs index b17215bb..08cfa55b 100644 --- a/core/src/widget.rs +++ b/core/src/widget.rs @@ -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 |