summaryrefslogtreecommitdiff
path: root/include/apr_tables.h
diff options
context:
space:
mode:
authorJustin Erenkrantz <jerenkrantz@apache.org>2002-11-10 08:35:16 +0000
committerJustin Erenkrantz <jerenkrantz@apache.org>2002-11-10 08:35:16 +0000
commit05e4db1ad0daefbe23c7bd4bf95dcc26117791ee (patch)
tree0706c9dcb9d80ee34b95fef0edcc656533723049 /include/apr_tables.h
parent4af567a62faf58f6758c4c744b1dad30520ef7a8 (diff)
downloadapr-05e4db1ad0daefbe23c7bd4bf95dcc26117791ee.tar.gz
Go through doxygen output and remove as many errors and warnings as I could.
No code changes. (Note removal of #define duplication in apr_poll.h/apr_network_io.h of the APR_POLL* values. This appears to have been an oversight and is now just in apr_poll.h) git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64009 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_tables.h')
-rw-r--r--include/apr_tables.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/apr_tables.h b/include/apr_tables.h
index 1e5404002..3d1970479 100644
--- a/include/apr_tables.h
+++ b/include/apr_tables.h
@@ -86,9 +86,10 @@ extern "C" {
/** the table abstract data type */
typedef struct apr_table_t apr_table_t;
-/** An opaque array type */
+/** @see apr_array_header_t */
typedef struct apr_array_header_t apr_array_header_t;
+/** An opaque array type */
struct apr_array_header_t {
/** The pool the array is allocated out of */
apr_pool_t *pool;
@@ -204,7 +205,7 @@ APR_DECLARE(apr_array_header_t *) apr_array_copy_hdr(apr_pool_t *p,
* @param p The pool to allocate the new array out of
* @param first The array to put first in the new array.
* @param second The array to put second in the new array.
- * @param return A new array containing the data from the two arrays passed in.
+ * @return A new array containing the data from the two arrays passed in.
*/
APR_DECLARE(apr_array_header_t *) apr_array_append(apr_pool_t *p,
const apr_array_header_t *first,
@@ -353,7 +354,7 @@ APR_DECLARE(apr_table_t *) apr_table_overlay(apr_pool_t *p,
* and apr_table_vdo().
* @param rec The data passed as the first argument to apr_table_[v]do()
* @param key The key from this iteration of the table
- * @param key The value from this iteration of the table
+ * @param value The value from this iteration of the table
* @remark Iteration continues while this callback function returns non-zero.
* To export the callback function for apr_table_[v]do() it must be declared
* in the _NONSTD convention.