rbb 01/02/13 11:23:01
Modified: include apr_buckets.h
Log:
Fix some docs for the brigade insertion macros.
Submitted by: Cliff Woolley <[EMAIL PROTECTED]>
Revision Changes Path
1.75 +4 -4 apr-util/include/apr_buckets.h
Index: apr_buckets.h
===================================================================
RCS file: /home/cvs/apr-util/include/apr_buckets.h,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -d -b -w -u -r1.74 -r1.75
--- apr_buckets.h 2001/02/13 19:18:41 1.74
+++ apr_buckets.h 2001/02/13 19:23:01 1.75
@@ -343,8 +343,8 @@
/**
* Insert a list of buckets before a specified bucket
- * @param a The buckets to insert
- * @param b The bucket to insert before
+ * @param a The bucket to insert before
+ * @param b The buckets to insert
* @deffunc void APR_BUCKET_INSERT_BEFORE(apr_bucket *a, apr_bucket *b)
*/
#define APR_BUCKET_INSERT_BEFORE(a, b) do { \
@@ -354,8 +354,8 @@
/**
* Insert a list of buckets after a specified bucket
- * @param a The buckets to insert
- * @param b The bucket to insert after
+ * @param a The bucket to insert after
+ * @param b The buckets to insert
* @deffunc void APR_BUCKET_INSERT_AFTER(apr_bucket *a, apr_bucket *b)
*/
#define APR_BUCKET_INSERT_AFTER(a, b) do { \