diff options
| author | Diana <iaz3@users.noreply.github.com> | 2018-10-14 08:14:21 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-14 08:14:21 -0400 |
| commit | 1b355a89763efa5a67931f5190cbd0331d1f9a5d (patch) | |
| tree | 876e02b1832f649fcfcd8d1c511542c1a6e5d2e5 /src/libstd | |
| parent | 2462a2de8c72e70fca250abe29255519b5fb892d (diff) | |
| download | rust-1b355a89763efa5a67931f5190cbd0331d1f9a5d.tar.gz rust-1b355a89763efa5a67931f5190cbd0331d1f9a5d.zip | |
Fix incorrect link in println! documentation
The eprintln! link was incorrectly linking to eprint! instead
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/macros.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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. |
