1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2025-04-05 17:49:37 +00:00

Fix extra line feed

This commit is contained in:
0x1793d1 2019-12-11 15:03:18 +01:00
parent 131c897099
commit 56198225b4

View file

@ -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)
}
}