We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 051a662 commit 0a2f062Copy full SHA for 0a2f062
src/liballoc/string.rs
@@ -330,7 +330,10 @@ pub struct FromUtf8Error<A: AllocRef = Global> {
330
#[stable(feature = "rust1", since = "1.0.0")]
331
impl<A: AllocRef> fmt::Debug for FromUtf8Error<A> {
332
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
333
- f.debug_struct("FromUtf8Error").field("bytes", &self.bytes).field("error", &self.error).finish()
+ f.debug_struct("FromUtf8Error")
334
+ .field("bytes", &self.bytes)
335
+ .field("error", &self.error)
336
+ .finish()
337
}
338
339
0 commit comments