mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
Fix extra line feed (#1209)
This commit is contained in:
parent
a43a005f59
commit
1b8d747937
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ impl fmt::Display for Error {
|
|||
|
||||
impl fmt::Debug for Error {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
writeln!(f, "{:?}", &self.cause)
|
||||
write!(f, "{:?}", &self.cause)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue