Skip to content

Commit 5418d7a

Browse files
authored
fix: use Display for SharedErrorWrapper::Display (#990)
1 parent c664c6c commit 5418d7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/service/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ pub struct SharedErrorWrapper(SharedError);
123123

124124
impl Display for SharedErrorWrapper {
125125
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
126-
Debug::fmt(&self.0, f)
126+
Display::fmt(&self.0, f)
127127
}
128128
}
129129

0 commit comments

Comments
 (0)