summaryrefslogtreecommitdiff
path: root/include/apr_buckets.h
diff options
context:
space:
mode:
authorBojan Smojver <bojan@apache.org>2012-01-29 07:49:30 +0000
committerBojan Smojver <bojan@apache.org>2012-01-29 07:49:30 +0000
commita1c0ca3a1f974c2ac32f1df90da2cd403c8f6320 (patch)
tree3a6c26fab949a64c1f5d859fad9af39fc132ebb9 /include/apr_buckets.h
parent81f6ee39a814c0522eb8ed813e7be2f27a169484 (diff)
downloadapr-a1c0ca3a1f974c2ac32f1df90da2cd403c8f6320.tar.gz
Fix doxygen typos in apr_buckets.h.
Patch by Hiroaki KAWAI <kawai at apache.org>. PR: 52521. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1237208 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_buckets.h')
-rw-r--r--include/apr_buckets.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/apr_buckets.h b/include/apr_buckets.h
index 84d68102e..179ccd9af 100644
--- a/include/apr_buckets.h
+++ b/include/apr_buckets.h
@@ -693,10 +693,10 @@ APR_DECLARE(apr_status_t) apr_brigade_cleanup(void *data)
* @param b The brigade to split
* @param e The first bucket to move
* @param a The brigade which should be used for the result or NULL if
- * a new brigade should be created. The brigade @param a will be
+ * a new brigade should be created. The brigade @a a will be
* cleared if it is not empty.
- * @return The brigade supplied in @param a or a new one if @param a was NULL.
- * @warning Note that this function allocates a new brigade if @param a is
+ * @return The brigade supplied in @a a or a new one if @a a was NULL.
+ * @warning Note that this function allocates a new brigade if @a a is
* NULL so memory consumption should be carefully considered.
*/
APR_DECLARE(apr_bucket_brigade *) apr_brigade_split_ex(apr_bucket_brigade *b,
@@ -707,8 +707,8 @@ APR_DECLARE(apr_bucket_brigade *) apr_brigade_split_ex(apr_bucket_brigade *b,
/**
* Create a new bucket brigade and move the buckets from the tail end
* of an existing brigade into the new brigade. Buckets from
- * @param e to the last bucket (inclusively) of brigade @param b
- * are moved from @param b to the returned brigade.
+ * @a e to the last bucket (inclusively) of brigade @a b
+ * are moved from @a b to the returned brigade.
* @param b The brigade to split
* @param e The first bucket to move
* @return The new brigade