diff --git a/src/context.rs b/src/context.rs index 289d3af..376bedd 100644 --- a/src/context.rs +++ b/src/context.rs @@ -118,7 +118,7 @@ impl fmt::Display for Detail { match self { Self::Str(s) => f.write_str(s), Self::String(s) => f.write_str(s), - Self::Location(l) => write!(f, "At {l}"), + Self::Location(l) => write!(f, "at {l}"), #[cfg(feature = "backtrace")] Self::Backtrace(PrivateBacktrace(Backtrace::Unsupported)) => f.write_str("I'd like to show you a backtrace,\n but it's not supported on your platform"), #[cfg(feature = "backtrace")]