ianh 01/09/27 20:01:36
Modified: include apr_buckets.h
Log:
c/tip/remark
(doxygen)
Revision Changes Path
1.120 +3 -3 apr-util/include/apr_buckets.h
Index: apr_buckets.h
===================================================================
RCS file: /home/cvs/apr-util/include/apr_buckets.h,v
retrieving revision 1.119
retrieving revision 1.120
diff -u -r1.119 -r1.120
--- apr_buckets.h 2001/09/24 01:47:10 1.119
+++ apr_buckets.h 2001/09/28 03:01:36 1.120
@@ -289,7 +289,7 @@
*/
/**
* The magic pointer value that indicates the head of the brigade
- * @tip This is used to find the beginning and end of the brigade, eg:
+ * @remark This is used to find the beginning and end of the brigade, eg:
* <pre>
* while (e != APR_BRIGADE_SENTINEL(b)) {
* ...
@@ -325,7 +325,7 @@
* Iterate through a bucket brigade
* @param e The current bucket
* @param b The brigade to iterate over
- * @tip This is the same as either:
+ * @remark This is the same as either:
* <pre>
* e = APR_BRIGADE_FIRST(b);
* while (e != APR_BRIGADE_SENTINEL(b)) {
@@ -794,7 +794,7 @@
/**
* Delete a bucket by removing it from its brigade (if any) and then
* destroying it.
- * @tip This mainly acts as an aid in avoiding code verbosity. It is
+ * @remark This mainly acts as an aid in avoiding code verbosity. It is
* the preferred exact equivalent to:
* <pre>
* APR_BUCKET_REMOVE(e);