summaryrefslogtreecommitdiffstats
path: root/filetreelist/src/error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'filetreelist/src/error.rs')
-rw-r--r--filetreelist/src/error.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/filetreelist/src/error.rs b/filetreelist/src/error.rs
index b4250df0..068db8b4 100644
--- a/filetreelist/src/error.rs
+++ b/filetreelist/src/error.rs
@@ -5,11 +5,11 @@ use thiserror::Error;
#[derive(Error, Debug)]
pub enum Error {
- #[error("InvalidPath: `{0}`")]
- InvalidPath(PathBuf),
+ #[error("InvalidPath: `{0}`")]
+ InvalidPath(PathBuf),
- #[error("TryFromInt error:{0}")]
- IntConversion(#[from] TryFromIntError),
+ #[error("TryFromInt error:{0}")]
+ IntConversion(#[from] TryFromIntError),
}
pub type Result<T> = std::result::Result<T, Error>;