aboutsummaryrefslogtreecommitdiff
path: root/include/bh/algo.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/bh/algo.h')
-rw-r--r--include/bh/algo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/bh/algo.h b/include/bh/algo.h
index 9beae6f..9934306 100644
--- a/include/bh/algo.h
+++ b/include/bh/algo.h
@@ -107,7 +107,7 @@ void bh_sort_heap(void *array,
* @param element Element size
* @param equal Equal/compare function
*
- * @sa bh_heap_remove, bh_heap_insert
+ * @sa bh_heap_remove, bh_heap_insert
*/
void bh_heap_make(void *array,
size_t size,
@@ -124,7 +124,7 @@ void bh_heap_make(void *array,
*
* @warning Removed element is placed at the end of the array
*
- * @sa bh_heap_make, bh_heap_remove
+ * @sa bh_heap_make, bh_heap_remove
*/
void bh_heap_remove(void *array,
size_t size,
@@ -143,7 +143,7 @@ void bh_heap_remove(void *array,
* @warning If value is not passed, function assumes inserted element
* is already placed at the end of the array.
*
- * @sa bh_heap_make, bh_heap_remove
+ * @sa bh_heap_make, bh_heap_remove
*/
void bh_heap_insert(void *value,
void *array,