summaryrefslogtreecommitdiffstats
path: root/lib/control.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/control.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/control.sh')
-rw-r--r--lib/control.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/control.sh b/lib/control.sh
index 7b2d57d..e43a69e 100644
--- a/lib/control.sh
+++ b/lib/control.sh
@@ -39,7 +39,7 @@ _ob_parse_control_error()
}
## @brief Parse a control file
-## @details \fBob_parse_control\fP parses a control file of field names and
+## @details \fBob_parse_control\fP() parses a control file of field names and
## values formatted like RFC 822 (or RFC 2822 or RFC 5322) headers.
## For each field, \fBob_parse_control\fP calls \fIfield_cb\fP with the
## field name, the field value, and \fIuser_data\fP as arguments. If
@@ -176,8 +176,8 @@ ob_parse_control()
}
## @brief Set a substitution variable
-## @details \fBob_set_substvar\fP sets a substitution variable for later use by
-## \fBob_substvars\fP(3).
+## @details \fBob_set_substvar\fP() sets a substitution variable for later use
+## by \fBob_substvars\fP(3).
## @operand name req The name of the substitution variable. May only consist
## of uppercase and lowercase Latin letters, digits, and
## hyphens and must be at least one character long.
@@ -211,7 +211,7 @@ ob_set_substvar()
}
## @brief Substitute variables in text
-## @details \fBob_substvars\fP substitutes variables previously set with
+## @details \fBob_substvars\fP() substitutes variables previously set with
## \fBob_set_substvar\fP(3) in a string. The format for variable
## substitutions is \fI${var}\fP, and substitutions can be nested.
## @operand string req The string in which to substitute variables.