Rollup merge of #105172 - alexs-sh:issue-98861-fix-next, r=scottmcm
Added error documentation for write_fmt This continuation of work at rust-lang#98861
This commit is contained in:
commit
6d8ac8389e
1 changed files with 5 additions and 0 deletions
|
@ -174,6 +174,11 @@ pub trait Write {
|
||||||
/// This method should generally not be invoked manually, but rather through
|
/// This method should generally not be invoked manually, but rather through
|
||||||
/// the [`write!`] macro itself.
|
/// the [`write!`] macro itself.
|
||||||
///
|
///
|
||||||
|
/// # Errors
|
||||||
|
///
|
||||||
|
/// This function will return an instance of [`Error`] on error. Please see
|
||||||
|
/// [write_str](Write::write_str) for details.
|
||||||
|
///
|
||||||
/// # Examples
|
/// # Examples
|
||||||
///
|
///
|
||||||
/// ```
|
/// ```
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue