diff options
Diffstat (limited to 'indieauth')
-rw-r--r-- | indieauth/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indieauth/src/lib.rs b/indieauth/src/lib.rs index 96ddea4..40bba5a 100644 --- a/indieauth/src/lib.rs +++ b/indieauth/src/lib.rs @@ -989,7 +989,7 @@ impl std::error::Error for self::Error {} impl std::fmt::Display for self::Error { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - write!(f, "IndieAuth error ({})", self.kind)?; + write!(f, "indieauth error: {}", self.kind)?; if let Some(msg) = self.msg.as_deref() { write!(f, ": {}", msg)?; } |