1
Fork 0

Rollup merge of #55066 - iaz3:patch-1, r=sfackler

Fix incorrect link in println! documentation

The eprintln! link was incorrectly linking to eprint! instead
This commit is contained in:
Manish Goregaokar 2018-10-15 10:15:21 -07:00 committed by GitHub
commit 6993a051e7
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
/// [`std::fmt`]: ../std/fmt/index.html
/// [`eprintln!`]: ../std/macro.eprint.html
/// [`eprintln!`]: ../std/macro.eprintln.html
/// # Panics
///
/// Panics if writing to `io::stdout` fails.