summaryrefslogtreecommitdiffstats
path: root/lib/locale.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/locale.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/locale.sh')
-rw-r--r--lib/locale.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/locale.sh b/lib/locale.sh
index 3628670..4ffd0bb 100644
--- a/lib/locale.sh
+++ b/lib/locale.sh
@@ -23,7 +23,8 @@ _ob_text_domain=
_OB_LOCALE_PATH="${LOCALEDIR}/%s/LC_MESSAGES/%s.ms"
## @brief Get the current message domain
-## @details \fBob_get_text_domain\fP prints the currently loaded message domain.
+## @details \fBob_get_text_domain\fP() prints the currently loaded message
+## domain.
## @return Returns 0 on success.
## @stdout Prints the name of the currently loaded message domain.
## @pure yes This function has no side effects.
@@ -112,8 +113,8 @@ ob_set_locale_path()
}
## @brief Get a message from the current message domain
-## @details \fBob_get_msg\fP prints a message, identified by a message ID, from
-## the currently loaded message catalog.
+## @details \fBob_get_msg\fP() prints a message, identified by a message ID,
+## from the currently loaded message catalog.
## @operand msgid req The ID of the message to print
## @return Returns 0 on success.
## @stdout Prints the requested message from the current message domain.