mirror of https://github.com/fafhrd91/actix-web
Fix extra line feed
This commit is contained in:
parent
131c897099
commit
56198225b4
|
@ -109,7 +109,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 New Issue