1
Fork 0

Fix incorrect link in println! documentation

The eprintln! link was incorrectly linking to eprint! instead
This commit is contained in:
Diana 2018-10-14 08:14:21 -04:00 committed by GitHub
parent 2462a2de8c
commit 1b355a8976
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -139,7 +139,7 @@ macro_rules! print {
/// ///
/// [`format!`]: ../std/macro.format.html /// [`format!`]: ../std/macro.format.html
/// [`std::fmt`]: ../std/fmt/index.html /// [`std::fmt`]: ../std/fmt/index.html
/// [`eprintln!`]: ../std/macro.eprint.html /// [`eprintln!`]: ../std/macro.eprintln.html
/// # Panics /// # Panics
/// ///
/// Panics if writing to `io::stdout` fails. /// Panics if writing to `io::stdout` fails.