Fix algorithm header documentation indentation

This commit is contained in:
2024-04-14 22:32:48 +03:00
parent f2f44dcf5c
commit d6c396231f

View File

@@ -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,