summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRainer Jung <rjung@apache.org>2018-08-25 13:50:04 +0000
committerRainer Jung <rjung@apache.org>2018-08-25 13:50:04 +0000
commit3b757024f18e165190c0469ef97bdecee18df4b6 (patch)
tree427e037b2d45aa1f6f092cee8aeaad8010c582cb
parentc8232ddaf07e4096788cfdfd6ddf08e83f7e9ae5 (diff)
downloadapr-3b757024f18e165190c0469ef97bdecee18df4b6.tar.gz
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
-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);