You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bo...@apache.org on 2012/01/29 08:49:30 UTC

svn commit: r1237208 - /apr/apr/trunk/include/apr_buckets.h

Author: bojan
Date: Sun Jan 29 07:49:30 2012
New Revision: 1237208

URL: http://svn.apache.org/viewvc?rev=1237208&view=rev
Log:
Fix doxygen typos in apr_buckets.h.
Patch by Hiroaki KAWAI <kawai at apache.org>.
PR: 52521.

Modified:
    apr/apr/trunk/include/apr_buckets.h

Modified: apr/apr/trunk/include/apr_buckets.h
URL: http://svn.apache.org/viewvc/apr/apr/trunk/include/apr_buckets.h?rev=1237208&r1=1237207&r2=1237208&view=diff
==============================================================================
--- apr/apr/trunk/include/apr_buckets.h (original)
+++ apr/apr/trunk/include/apr_buckets.h Sun Jan 29 07:49:30 2012
@@ -693,10 +693,10 @@ APR_DECLARE(apr_status_t) apr_brigade_cl
  * @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_br
 /**
  * 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