1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-12 10:19:36 +00:00

Fix extra line feed (#1206)

This commit is contained in:
0x1793d1 2019-12-09 17:40:37 +01:00 committed by Nikolay Kim
parent 1d45639bed
commit c23020d266

View file

@ -108,7 +108,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)
}
}