Skip to content

Commit

Permalink
Rollup merge of rust-lang#100255 - thedanvail:issue-98861-fix, r=josh…
Browse files Browse the repository at this point in the history
…triplett

Adding more verbose documentation for `std::fmt::Write`

Attempts to address rust-lang#98861
  • Loading branch information
Dylan-DPC committed Aug 12, 2022
2 parents 511eda1 + ee8a01f commit dbea6ac
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions library/core/src/fmt/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@ pub trait Write {
///
/// This function will return an instance of [`Error`] on error.
///
/// The purpose of std::fmt::Error is to abort the formatting operation when the underlying
/// destination encounters some error preventing it from accepting more text; it should
/// generally be propagated rather than handled, at least when implementing formatting traits.
///
/// # Examples
///
/// ```
Expand Down

0 comments on commit dbea6ac

Please sign in to comment.