Fix typo in eprintln docs

This commit is contained in:
clubby789 2023-06-21 01:06:48 +01:00
parent 46514218f6
commit 7201271fe8

View File

@ -154,7 +154,7 @@ macro_rules! println {
/// ///
/// Panics if writing to `io::stderr` fails. /// 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. /// this macro to panic.
/// ///
/// # Examples /// # Examples
@ -189,7 +189,7 @@ macro_rules! eprint {
/// ///
/// Panics if writing to `io::stderr` fails. /// 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. /// this macro to panic.
/// ///
/// # Examples /// # Examples