Sat, 04 Jan 2025 14:18:27 +0100
do not mixup Doxygen command syntax
relates to #548
src/hash_map.c | file | annotate | diff | comparison | revisions |
--- a/src/hash_map.c Sat Jan 04 14:17:51 2025 +0100 +++ b/src/hash_map.c Sat Jan 04 14:18:27 2025 +0100 @@ -169,13 +169,13 @@ /** * Helper function to avoid code duplication. * - * If \p remove is true, and \p targetbuf is \c NULL, the element + * If @p remove is true, and @p targetbuf is @c NULL, the element * will be destroyed when found. * - * If \p remove is true, and \p targetbuf is set, the element will + * If @p remove is true, and @p targetbuf is set, the element will * be copied to that buffer and no destructor function is called. * - * If \p remove is false, \p targetbuf must not be non-null and + * If @p remove is false, @p targetbuf must not be non-null and * either the pointer, when the map is storing pointers, is copied * to the target buffer, or a pointer to the stored object will * be copied to the target buffer.