Rollup merge of #112863 - clubby789:stderr-typo, r=albertlarsan68

Fix copy-paste typo in `eprint(ln)` docs

Fixes #112862
This commit is contained in:
Guillaume Gomez 2023-06-21 15:45:17 +02:00 committed by GitHub
commit 38916c71cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
@ -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