From 1b355a89763efa5a67931f5190cbd0331d1f9a5d Mon Sep 17 00:00:00 2001 From: Diana Date: Sun, 14 Oct 2018 08:14:21 -0400 Subject: [PATCH] Fix incorrect link in println! documentation The eprintln! link was incorrectly linking to eprint! instead --- src/libstd/macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs index 16a3aecfc18..34bbbb53d5f 100644 --- a/src/libstd/macros.rs +++ b/src/libstd/macros.rs @@ -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. -- 2.44.0