Skip to content

Commit 637659b

Browse files
committed
Add missing links
1 parent becf5ec commit 637659b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

library/std/src/macros.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ macro_rules! print {
7676
///
7777
/// # Panics
7878
///
79-
/// Panics if writing to `io::stdout` fails.
79+
/// Panics if writing to [`io::stdout`] fails.
8080
///
8181
/// [`io::stdout`]: crate::io::stdout
8282
///
@@ -100,7 +100,7 @@ macro_rules! println {
100100
/// Prints to the standard error.
101101
///
102102
/// Equivalent to the [`print!`] macro, except that output goes to
103-
/// [`io::stderr`] instead of `io::stdout`. See [`print!`] for
103+
/// [`io::stderr`] instead of [`io::stdout`]. See [`print!`] for
104104
/// example usage.
105105
///
106106
/// Use `eprint!` only for error and progress messages. Use `print!`
@@ -128,7 +128,7 @@ macro_rules! eprint {
128128
/// Prints to the standard error, with a newline.
129129
///
130130
/// Equivalent to the [`println!`] macro, except that output goes to
131-
/// [`io::stderr`] instead of `io::stdout`. See [`println!`] for
131+
/// [`io::stderr`] instead of [`io::stdout`]. See [`println!`] for
132132
/// example usage.
133133
///
134134
/// Use `eprintln!` only for error and progress messages. Use `println!`

0 commit comments

Comments
 (0)