diff options
author | 2024-04-19 14:53:38 +0800 | |
---|---|---|
committer | 2024-04-19 14:53:38 +0800 | |
commit | f3a2255f830e52d68c6bf0aaebc1e4164d66f2d8 (patch) | |
tree | bc3ede44476580b8d1c25aa8cef9dd159a9ee7b4 /src/window/icon.rs | |
parent | a05b8044a9a82c1802d4d97f1723e24b9d9dad9c (diff) | |
download | iced-f3a2255f830e52d68c6bf0aaebc1e4164d66f2d8.tar.gz iced-f3a2255f830e52d68c6bf0aaebc1e4164d66f2d8.tar.bz2 iced-f3a2255f830e52d68c6bf0aaebc1e4164d66f2d8.zip |
Fix typo
Diffstat (limited to '')
-rw-r--r-- | src/window/icon.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window/icon.rs b/src/window/icon.rs index ef71c228..7fe4ca7b 100644 --- a/src/window/icon.rs +++ b/src/window/icon.rs @@ -54,7 +54,7 @@ pub enum Error { InvalidError(#[from] icon::Error), /// The underlying OS failed to create the icon. - #[error("The underlying OS failted to create the window icon: {0}")] + #[error("The underlying OS failed to create the window icon: {0}")] OsError(#[from] io::Error), /// The `image` crate reported an error. |