aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikhail Romanko <me@blankhex.com>2024-04-14 22:32:48 +0300
committerMikhail Romanko <me@blankhex.com>2024-04-14 22:32:48 +0300
commitd6c396231f7cca7f8fffd3d7bd67dc8ba2fba122 (patch)
tree794b8b8bef71f17db16a71cf9ac1ebdb9704ee9a
parentf2f44dcf5cb24a1eeaecaf0f4e49f74fcb7474f3 (diff)
downloadbhlib-old-d6c396231f7cca7f8fffd3d7bd67dc8ba2fba122.tar.gz
Fix algorithm header documentation indentation
-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,