aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-08-03 17:50:59 +0200
committerThomas Voss <mail@thomasvoss.com> 2023-08-03 17:50:59 +0200
commit5c60b2da59a76bb86f8ca51b0f35995b5c2538bd (patch)
treea6d74c75db7ba26ed590a86b54e48d2f9a67c7ec
parent263cb0a5e3cd7dffc8fd72b8492452a05d928734 (diff)
Reword “stderr” as “the standard error”
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 685c023..8726de5 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -3,7 +3,7 @@
#[doc(hidden)]
pub use std::{env, process};
-/// Print a diagnostic message to stderr and exit with a given code.
+/// Print a diagnostic message to the standard error and exit with a given code.
///
/// This macro is analagous to the BSD [`errx(3)`] C function. It takes at a
/// minimum two arguments. The first argument is the code with passed to
@@ -80,7 +80,7 @@ macro_rules! err {
}
}
-/// Print a diagnostic message to stderr
+/// Print a diagnostic message to the standard error.
///
/// This macro is analagous to the BSD [`warnx(3)`] C function. It takes the
/// same arguments one would pass to a macro like [`println!`]. In fact, the