Skip to content

Commit

Permalink
Fix extra line feed (actix#1209)
Browse files Browse the repository at this point in the history
  • Loading branch information
0x1793d1 authored and fafhrd91 committed Dec 12, 2019
1 parent a43a005 commit 1b8d747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actix-http/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}

Expand Down

0 comments on commit 1b8d747

Please sign in to comment.