aboutsummaryrefslogtreecommitdiffstats
path: root/src/error.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-04-17 21:06:47 -0400
committerJesse Luehrs <doy@tozt.net>2021-04-17 21:06:47 -0400
commitc627737dfa6a30b71e3f7c32cca05675cc7e9b97 (patch)
treebe91d4c3e7fd45c387bdc7b7bf87a7d3068ed3d1 /src/error.rs
parent828e61a574f484aea575f3cd98322407d3f9aea5 (diff)
downloadrbw-c627737dfa6a30b71e3f7c32cca05675cc7e9b97.tar.gz
rbw-c627737dfa6a30b71e3f7c32cca05675cc7e9b97.zip
clippy
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 28f8504..7544e76 100644
--- a/src/error.rs
+++ b/src/error.rs
@@ -62,7 +62,7 @@ pub enum Error {
InvalidTwoFactorProvider { ty: String },
#[error("failed to parse JSON")]
- JSON {
+ Json {
source: serde_path_to_error::Error<serde_json::Error>,
},
@@ -103,7 +103,7 @@ pub enum Error {
},
#[error("openssl error")]
- OpenSSL { source: openssl::error::ErrorStack },
+ OpenSsl { source: openssl::error::ErrorStack },
#[error("failed to parse match type {s}")]
ParseMatchType { s: String },