diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2023-08-03 17:50:59 +0200 | 
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2023-08-03 17:50:59 +0200 | 
| commit | 5c60b2da59a76bb86f8ca51b0f35995b5c2538bd (patch) | |
| tree | a6d74c75db7ba26ed590a86b54e48d2f9a67c7ec | |
| parent | 263cb0a5e3cd7dffc8fd72b8492452a05d928734 (diff) | |
Reword “stderr” as “the standard error”
| -rw-r--r-- | src/lib.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -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 |