summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRainer Jung <rjung@apache.org>2018-08-25 13:48:21 +0000
committerRainer Jung <rjung@apache.org>2018-08-25 13:48:21 +0000
commit4f9b9fbcc5989ce0e9cfbfc67fd56804700f3ea0 (patch)
tree98299807aa7c5abfaccc7ae66438bd40d099af2e /include
parent22ad2fb4acf0f91d6b0908464ea9b72e8d9b20b5 (diff)
downloadapr-4f9b9fbcc5989ce0e9cfbfc67fd56804700f3ea0.tar.gz
Fix some doxygen comments.
Partial backport of r1834253 from trunk. Other part goes into apr-util. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.7.x@1839059 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/apr_allocator.h2
-rw-r--r--include/apr_skiplist.h4
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);