Skip to content

Commit 0a2f062

Browse files
committed
Satisfy tidy ... again
1 parent 051a662 commit 0a2f062

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/liballoc/string.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,10 @@ pub struct FromUtf8Error<A: AllocRef = Global> {
330330
#[stable(feature = "rust1", since = "1.0.0")]
331331
impl<A: AllocRef> fmt::Debug for FromUtf8Error<A> {
332332
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
333-
f.debug_struct("FromUtf8Error").field("bytes", &self.bytes).field("error", &self.error).finish()
333+
f.debug_struct("FromUtf8Error")
334+
.field("bytes", &self.bytes)
335+
.field("error", &self.error)
336+
.finish()
334337
}
335338
}
336339

0 commit comments

Comments
 (0)