Skip to content

Commit

Permalink
Rollup merge of #105172 - alexs-sh:issue-98861-fix-next, r=scottmcm
Browse files Browse the repository at this point in the history
Added error documentation for write_fmt

This continuation of work at #98861
  • Loading branch information
Yuki Okushi authored Jan 14, 2023
2 parents 6702f20 + c466be0 commit 6d8ac83
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions library/core/src/fmt/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,11 @@ pub trait Write {
/// This method should generally not be invoked manually, but rather through
/// 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
///
/// ```
Expand Down

0 comments on commit 6d8ac83

Please sign in to comment.