summaryrefslogtreecommitdiffstats
path: root/src/error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/error.rs')
-rw-r--r--src/error.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/error.rs b/src/error.rs
index 05ba004..2bcb899 100644
--- a/src/error.rs
+++ b/src/error.rs
@@ -15,7 +15,7 @@ pub enum Error {
#[error("SerdeYaml error: {0}")]
SerdeYaml(#[from] serde_yaml::Error),
#[error("Futures Join error : {0}")]
- JoinError(#[from] tokio::task::JoinError),
+ Join(#[from] tokio::task::JoinError),
#[error("File `{}` is malformed; try removing it", .0.display())]
MalformedFile(PathBuf),
#[error("Lacking {0:?} permissions on `{}`", .1.display())]
@@ -23,7 +23,7 @@ pub enum Error {
#[error("{0}")]
StackExchange(String),
#[error("{0}")]
- ScrapingError(String),
+ Scraping(String),
#[error("Couldn't find a suitable project directory; is your OS supported?")]
ProjectDir,
#[error("Sorry, couldn't find any answers to your question")]