Skip to content

Commit 6e714f7

Browse files
authored
Fix Easy2::fmt to print handler correctly (#353)
1 parent e0f491c commit 6e714f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/easy/handler.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3019,7 +3019,7 @@ impl<H: fmt::Debug> fmt::Debug for Easy2<H> {
30193019
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
30203020
f.debug_struct("Easy")
30213021
.field("handle", &self.inner.handle)
3022-
.field("handler", &self.inner.handle)
3022+
.field("handler", &self.inner.handler)
30233023
.finish()
30243024
}
30253025
}

0 commit comments

Comments
 (0)