summaryrefslogtreecommitdiffstats
path: root/src/paths
diff options
context:
space:
mode:
Diffstat (limited to 'src/paths')
-rw-r--r--src/paths/error.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/paths/error.rs b/src/paths/error.rs
index 3a5a580..4300e8a 100644
--- a/src/paths/error.rs
+++ b/src/paths/error.rs
@@ -2,9 +2,9 @@ pub type Result<T> = std::result::Result<T, Error>;
#[derive(thiserror::Error, Debug)]
pub enum Error {
- #[error("Config error: {0}")]
+ #[error(transparent)]
Config(#[from] figment::error::Error),
- #[error("Ignore error: {0}")]
+ #[error(transparent)]
Ignore(#[from] ignore::Error),
}