summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrjung <rjung@13f79535-47bb-0310-9956-ffa450edef68>2018-08-25 13:50:04 +0000
committerrjung <rjung@13f79535-47bb-0310-9956-ffa450edef68>2018-08-25 13:50:04 +0000
commit4955617e7a50b203a5b8f861efddd023456d34c1 (patch)
tree427e037b2d45aa1f6f092cee8aeaad8010c582cb
parentbad96b3335e2150c3844e6f073f3d0d4e8816de9 (diff)
downloadlibapr-4955617e7a50b203a5b8f861efddd023456d34c1.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: http://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);