Rollup merge of #129001 - cblh:fix/128713, r=Noratrieb · patricklam/verify-rust-std@3b8aab7 (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit 3b8aab7

chore(lib): Enhance documentation for core::fmt::Formatter's write_fm…fix: rust-lang#128713

File tree

1 file changed

lines changed

1 file changed

lines changed

Lines changed: 5 additions & 0 deletions

Original file line number Diff line number Diff line change
@@ -1626,6 +1626,11 @@ impl<'a> Formatter<'a> {
1626 1626 self.buf.write_str(data)
1627 1627 }
1628 1628
1629 +/// Glue for usage of the [`write!`] macro with implementors of this trait.
1630 + ///
1631 + /// This method should generally not be invoked manually, but rather through
1632 + /// the [`write!`] macro itself.
1633 + ///
1629 1634 /// Writes some formatted information into this instance.
1630 1635 ///
1631 1636 /// # Examples