From 3b757024f18e165190c0469ef97bdecee18df4b6 Mon Sep 17 00:00:00 2001 From: Rainer Jung Date: Sat, 25 Aug 2018 13:50:04 +0000 Subject: Fix some doxygen comments Partial backport of r1834253 from trunk resp. full backport of r1839059 from 1.7.x. Other trunk part goes into apr-util. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.6.x@1839060 13f79535-47bb-0310-9956-ffa450edef68 --- include/apr_allocator.h | 2 +- include/apr_skiplist.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/apr_allocator.h b/include/apr_allocator.h index 9d3b12046..be05d0e4f 100644 --- a/include/apr_allocator.h +++ b/include/apr_allocator.h @@ -107,7 +107,7 @@ APR_DECLARE(void) apr_allocator_free(apr_allocator_t *allocator, /** * Get the true size that would be allocated for the given size (including * the header and alignment). - * @param list The allocator from which to the memory would be allocated + * @param allocator The allocator from which to the memory would be allocated * @param size The size to align * @return The aligned size (or zero on apr_size_t overflow) */ diff --git a/include/apr_skiplist.h b/include/apr_skiplist.h index 1e7ab258c..eeab10bf9 100644 --- a/include/apr_skiplist.h +++ b/include/apr_skiplist.h @@ -159,9 +159,9 @@ APR_DECLARE(void *) apr_skiplist_find(apr_skiplist *sl, void *data, apr_skiplist * @param data The value to search for * @param iter A pointer to the returned skip list node representing the element * found - * @param func The comparison function to use + * @param comp The comparison function to use */ -APR_DECLARE(void *) apr_skiplist_last_compare(apr_skiplist *sli, void *data, +APR_DECLARE(void *) apr_skiplist_last_compare(apr_skiplist *sl, void *data, apr_skiplistnode **iter, apr_skiplist_compare comp); -- cgit v1.2.1