summaryrefslogtreecommitdiffstats
path: root/lib/output.sh
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-03-14 12:54:24 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-03-14 12:54:24 (EDT)
commitcc369631ff8247040bb101c60a38bd227313c656 (patch)
treec85a72a68b19c55cb853329fc9a82050f6f5e93e /lib/output.sh
parent509e8f9414e87c09bc6993683b499828a22d356f (diff)
Fix missing "()" after function names in @details
Also fix function name in ob_get_system_plat()'s @details and update ob_error()'s @details.
Diffstat (limited to 'lib/output.sh')
-rw-r--r--lib/output.sh7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/output.sh b/lib/output.sh
index f4fed80..9e8834c 100644
--- a/lib/output.sh
+++ b/lib/output.sh
@@ -18,8 +18,7 @@
# along with opkbuild. If not, see <http://www.gnu.org/licenses/>.
## @brief Print an error message and exit
-## @details \fBob_error\fP prints \fIarguments\fP according to \fIformat\fP and
-## then exits the application.
+## @details \fBob_error\fP() prints \fIarguments\fP according to \fIformat\fP.
## @operand format req The format string. See \fBprintf\fP(1) for the syntax
## of \fIformat\fP.
## @operand arguments opt Arguments to be printed, as referenced by
@@ -39,7 +38,7 @@ ob_error()
}
## @brief Print a warning message
-## @details \fBob_warn\fP prints \fIarguments\fP according to \fIformat\fP.
+## @details \fBob_warn\fP() prints \fIarguments\fP according to \fIformat\fP.
## @operand format req The format string. See \fBprintf\fP(1) for the syntax
## of \fIformat\fP.
## @operand arguments opt Arguments to be printed, as referenced by
@@ -59,7 +58,7 @@ ob_warn()
}
## @brief Print an informational message
-## @details \fBob_warn\fP prints \fIarguments\fP according to \fIformat\fP.
+## @details \fBob_warn\fP() prints \fIarguments\fP according to \fIformat\fP.
## @operand format req The format string. See \fBprintf\fP(1) for the syntax
## of \fIformat\fP.
## @operand arguments opt Arguments to be printed, as referenced by