From c4ec074986cb9fde177378b619ebdf2021a2a1db Mon Sep 17 00:00:00 2001 From: Rod Elias Date: Tue, 17 May 2022 00:21:39 -0300 Subject: [PATCH] chore: better description for eprint macro --- src/hello/print.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hello/print.md b/src/hello/print.md index 20331ef049..6452c33106 100644 --- a/src/hello/print.md +++ b/src/hello/print.md @@ -6,7 +6,7 @@ some of which include: * `format!`: write formatted text to [`String`][string] * `print!`: same as `format!` but the text is printed to the console (io::stdout). * `println!`: same as `print!` but a newline is appended. -* `eprint!`: same as `format!` but the text is printed to the standard error (io::stderr). +* `eprint!`: same as `print!` but the text is printed to the standard error (io::stderr). * `eprintln!`: same as `eprint!`but a newline is appended. All parse text in the same fashion. As a plus, Rust checks formatting