We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd44bdc commit 981ec73Copy full SHA for 981ec73
src/theme.rs
@@ -27,11 +27,11 @@ pub struct Theme {
27
28
#[derive(Error, Debug)]
29
pub enum Error {
30
- #[error("Theme file not existed")]
+ #[error("Theme file does not exist")]
31
NotExisted(#[from] io::Error),
32
- #[error("Theme file format invalid")]
+ #[error("Theme file format invalid: {0}")]
33
InvalidFormat(#[from] serde_yaml::Error),
34
- #[error("Theme file path invalid {0}")]
+ #[error("Theme file path invalid: {0}")]
35
InvalidPath(String),
36
#[error("Unknown Theme error")]
37
Unknown(),
0 commit comments