diff options
author | 2022-04-30 14:20:52 +0200 | |
---|---|---|
committer | 2022-04-30 14:20:52 +0200 | |
commit | 68e9eb0a9b45b86713ce5d0e9c2273a60f2cc11c (patch) | |
tree | b60c4f355d956e9d5eafc0047dfda77b7433bf0e /native/src/image.rs | |
parent | ac35fe3edf78c1674fe85b37549002e006b0ff13 (diff) | |
download | iced-68e9eb0a9b45b86713ce5d0e9c2273a60f2cc11c.tar.gz iced-68e9eb0a9b45b86713ce5d0e9c2273a60f2cc11c.tar.bz2 iced-68e9eb0a9b45b86713ce5d0e9c2273a60f2cc11c.zip |
Fix broken intra-doc links in documentation
Diffstat (limited to 'native/src/image.rs')
-rw-r--r-- | native/src/image.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/native/src/image.rs b/native/src/image.rs index 43bba4f1..516eb2db 100644 --- a/native/src/image.rs +++ b/native/src/image.rs @@ -5,7 +5,7 @@ use std::hash::{Hash, Hasher as _}; use std::path::PathBuf; use std::sync::Arc; -/// An [`Image`] handle. +/// A handle of some image data. #[derive(Debug, Clone)] pub struct Handle { id: u64, @@ -79,7 +79,7 @@ impl Hash for Handle { } } -/// The data of an [`Image`]. +/// The data of a raster image. #[derive(Clone, Hash)] pub enum Data { /// File data |