diff options
-rw-r--r-- | lib/output.sh | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/output.sh b/lib/output.sh index 2d11fe7..dfe4149 100644 --- a/lib/output.sh +++ b/lib/output.sh @@ -25,8 +25,8 @@ ## @operand arguments opt Arguments to be printed, as referenced by ## \fIformat\fP. ## @return Returns 0. -## @stderr This function prints the formatted message, preceded by the program -## name and "Error:", to stderr. +## @stderr Prints the formatted message, preceded by the program name and +## "Error:". ## @pure no This function causes the current shell to exit. ob_error() { @@ -45,8 +45,8 @@ ob_error() ## @operand arguments opt Arguments to be printed, as referenced by ## \fIformat\fP. ## @return Returns 0. -## @stderr This function prints the formatted message, preceded by the program -## name and "Warning:", to stderr. +## @stderr Prints the formatted message, preceded by the program name and +## "Warning:". ## @pure yes This function has no side effects. ob_warn() { @@ -65,8 +65,7 @@ ob_warn() ## @operand arguments opt Arguments to be printed, as referenced by ## \fIformat\fP. ## @return Returns 0. -## @stderr This function prints the formatted message, preceded by the program -## name, to stderr. +## @stderr Prints the formatted message, preceded by the program name. ## @pure yes This function has no side effects. ob_info() { |