diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-03-14 00:29:50 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-03-14 00:29:50 (EDT) |
commit | 27a42beaa3cbba77ac904139cf8f55a1437bd01a (patch) | |
tree | 5f5057724a5165b7b67176438cd6cdb88552dc29 | |
parent | 01ae34db9f4d4e0e6e94c9537c9ba618599473ee (diff) |
ob_get_*_parameter(): Fix @operand doc commands
-rw-r--r-- | lib/package.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/package.sh b/lib/package.sh index 85cbd98..c499378 100644 --- a/lib/package.sh +++ b/lib/package.sh @@ -153,7 +153,7 @@ ob_get_binary_packages() ## @brief Get a source package field value ## @details \fBob_get_source_parameter\fP gets the value of a source package ## field. -## @operand name The name of the field. +## @operand name req The name of the field. ## @return Returns 0 on success or 1 if \fIname\fP is invalid. ## @stdout Prints the source package field value. ## @pure yes This function has no side effects. @@ -179,8 +179,8 @@ ob_get_source_parameter() ## @brief Get a binary package field value ## @details \fBob_get_binary_parameter\fP gets the value of a binary package ## field. -## @operand package The name of the binary package. -## @operand name The name of the field. +## @operand package req The name of the binary package. +## @operand name req The name of the field. ## @return Returns 0 on success or 1 if \fIname\fP is invalid. ## @stdout Prints the binary package field value. ## @pure yes This function has no side effects. |