diff options
author | 2024-03-09 15:26:37 +0800 | |
---|---|---|
committer | 2024-03-09 15:26:37 +0800 | |
commit | 500ba962d17853bdef7aed49b150dbe3f45692e9 (patch) | |
tree | 52f7177fb7a31494a0d021c5f1c238145577a7c9 /graphics | |
parent | a341e39df63e9c4860eb796bf5c4b6a9b41116a2 (diff) | |
download | iced-500ba962d17853bdef7aed49b150dbe3f45692e9.tar.gz iced-500ba962d17853bdef7aed49b150dbe3f45692e9.tar.bz2 iced-500ba962d17853bdef7aed49b150dbe3f45692e9.zip |
fix some comments
Signed-off-by: rustrover <seekseat@126.com>
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/src/error.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/src/error.rs b/graphics/src/error.rs index 77758f54..c6ea98a3 100644 --- a/graphics/src/error.rs +++ b/graphics/src/error.rs @@ -13,7 +13,7 @@ pub enum Error { #[error("a suitable graphics adapter or device could not be found")] GraphicsAdapterNotFound, - /// An error occured in the context's internal backend - #[error("an error occured in the context's internal backend")] + /// An error occurred in the context's internal backend + #[error("an error occurred in the context's internal backend")] BackendError(String), } |