Skip to content

Commit 87a7a8e

Browse files
fmt
1 parent d6a402d commit 87a7a8e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/lib.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,14 @@ mod test {
152152

153153
impl<T: std::error::Error + 'static> std::fmt::Debug for LocatedError<T> {
154154
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
155-
write!(f, "{}:{}:{}\n{:?}", self.location.file(), self.location.line(), self.location.column(), self.inner)
155+
write!(
156+
f,
157+
"{}:{}:{}\n{:?}",
158+
self.location.file(),
159+
self.location.line(),
160+
self.location.column(),
161+
self.inner
162+
)
156163
}
157164
}
158165

0 commit comments

Comments
 (0)