chore: fix typo (#524)

This commit is contained in:
SSebo
2022-11-16 11:53:25 +08:00
committed by GitHub
parent 173a8f67a1
commit 29ad16d048
3 changed files with 6 additions and 6 deletions

View File

@@ -34,7 +34,7 @@ impl<'a, E: ErrorExt + ?Sized> fmt::Debug for DebugFormat<'a, E> {
write!(f, " Caused by: {:?}", source)?;
}
if let Some(backtrace) = self.0.backtrace_opt() {
// Add a newline to seperate causes and backtrace.
// Add a newline to separate causes and backtrace.
write!(f, "\nBacktrace:\n{}", backtrace)?;
}