Skip to content

Commit

Permalink
PR feedback on docblocks
Browse files Browse the repository at this point in the history
Signed-off-by: Scott K Logan <logans@cottsay.net>
  • Loading branch information
cottsay committed Jun 11, 2020
1 parent bd69787 commit f93dc6a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/rcutils/types/string_array.h
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ rcutils_string_array_fini(rcutils_string_array_t * string_array);
/**
* The two string arrays are compared according to lexicographical order.
*
* \param[in] sa0 The first string array.
* \param[in] sa1 The second string array.
* \param[in] lhs The first string array.
* \param[in] rhs The second string array.
* \param[out] res Negative value if `lhs` appears before `rhs` in lexicographical order.
* Zero if `lhs` and `rhs` are equal.
* Positive value if `lhs` appears after `rhs in lexographical order.
Expand Down Expand Up @@ -183,8 +183,8 @@ rcutils_string_array_sort_compare(const void * lhs, const void * rhs);
/// Sort a string array according to lexicographical order.
/**
* This function changes the order of the entries in a string array so that
* they are in lexicographically ascending order. Empty entries are placed at the
* end of the array.
* they are in lexicographically ascending order.
* Empty entries are placed at the end of the array.
*
* \param[inout] string_array object whose elements should be sorted.
* \return `RCUTILS_RET_OK` if successful, or
Expand Down

0 comments on commit f93dc6a

Please sign in to comment.