mirror of
https://github.com/actix/actix-web.git
synced 2024-12-17 13:46:36 +00:00
Fix extra line feed (#1206)
This commit is contained in:
parent
1d45639bed
commit
c23020d266
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ impl fmt::Display for Error {
|
||||||
|
|
||||||
impl fmt::Debug for Error {
|
impl fmt::Debug for Error {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||||
writeln!(f, "{:?}", &self.cause)
|
write!(f, "{:?}", &self.cause)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue