summaryrefslogtreecommitdiffstats
path: root/include/zix/hash.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-10-20 21:03:17 -0400
committerDavid Robillard <d@drobilla.net>2022-10-20 21:10:24 -0400
commit668ffa3febb116d20add6e9460fb1fb521a22e35 (patch)
tree888e51d4b7c853f4afe77743a2d846e6799cef5f /include/zix/hash.h
parent1a98f16aabf9e2c28f97b8ec89ae35af5a333252 (diff)
downloadzix-668ffa3febb116d20add6e9460fb1fb521a22e35.tar.gz
zix-668ffa3febb116d20add6e9460fb1fb521a22e35.tar.bz2
zix-668ffa3febb116d20add6e9460fb1fb521a22e35.zip
Fix doc comments
Diffstat (limited to 'include/zix/hash.h')
-rw-r--r--include/zix/hash.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/include/zix/hash.h b/include/zix/hash.h
index a0146de..c1521e0 100644
--- a/include/zix/hash.h
+++ b/include/zix/hash.h
@@ -1,4 +1,4 @@
-// Copyright 2011-2021 David Robillard <d@drobilla.net>
+// Copyright 2011-2022 David Robillard <d@drobilla.net>
// SPDX-License-Identifier: ISC
#ifndef ZIX_HASH_H
@@ -16,9 +16,8 @@ extern "C" {
#endif
/**
- @addtogroup zix
- @{
- @name Hash
+ @defgroup zix_hash Hash
+ @ingroup zix
@{
*/
@@ -115,6 +114,7 @@ typedef struct {
/**
Create a new hash table.
+ @param allocator Allocator used for the internal array.
@param key_func A function to retrieve the key from a record.
@param hash_func The key hashing function.
@param equal_func A function to test keys for equality.
@@ -319,7 +319,6 @@ zix_hash_find_record(const ZixHash* ZIX_NONNULL hash,
/**
@}
- @}
*/
#ifdef __cplusplus