Skip to content

Commit 1694968

Browse files
authored
Merge pull request #1541 from chapeupreto/patch-1
chore: better description for eprint macro
2 parents e9f93cf + c4ec074 commit 1694968

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hello/print.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ some of which include:
66
* `format!`: write formatted text to [`String`][string]
77
* `print!`: same as `format!` but the text is printed to the console (io::stdout).
88
* `println!`: same as `print!` but a newline is appended.
9-
* `eprint!`: same as `format!` but the text is printed to the standard error (io::stderr).
9+
* `eprint!`: same as `print!` but the text is printed to the standard error (io::stderr).
1010
* `eprintln!`: same as `eprint!`but a newline is appended.
1111

1212
All parse text in the same fashion. As a plus, Rust checks formatting

0 commit comments

Comments
 (0)