Skip to content

Commit

Permalink
Rollup merge of #112863 - clubby789:stderr-typo, r=albertlarsan68
Browse files Browse the repository at this point in the history
Fix copy-paste typo in `eprint(ln)` docs

Fixes #112862
  • Loading branch information
GuillaumeGomez committed Jun 21, 2023
2 parents 009d72b + 7201271 commit 38916c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/std/src/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ macro_rules! println {
///
/// Panics if writing to `io::stderr` fails.
///
/// Writing to non-blocking stdout can cause an error, which will lead
/// Writing to non-blocking stderr can cause an error, which will lead
/// this macro to panic.
///
/// # Examples
Expand Down Expand Up @@ -189,7 +189,7 @@ macro_rules! eprint {
///
/// Panics if writing to `io::stderr` fails.
///
/// Writing to non-blocking stdout can cause an error, which will lead
/// Writing to non-blocking stderr can cause an error, which will lead
/// this macro to panic.
///
/// # Examples
Expand Down

0 comments on commit 38916c7

Please sign in to comment.