summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);