summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorianh <ianh@13f79535-47bb-0310-9956-ffa450edef68>2001-09-28 03:01:36 +0000
committerianh <ianh@13f79535-47bb-0310-9956-ffa450edef68>2001-09-28 03:01:36 +0000
commit47a6b0e4e5b34f274510d56a329f547c757b6895 (patch)
treef39967903c979c452b5be95abff1f655abf0b03f
parent76bd779b7d9f1daee0638ea28074a4b7904b0688 (diff)
downloadlibapr-util-47a6b0e4e5b34f274510d56a329f547c757b6895.tar.gz
c/tip/remark
(doxygen) git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@58426 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--include/apr_buckets.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/apr_buckets.h b/include/apr_buckets.h
index e288449b..8f5877a4 100644
--- a/include/apr_buckets.h
+++ b/include/apr_buckets.h
@@ -289,7 +289,7 @@ typedef apr_status_t (*apr_brigade_flush)(apr_bucket_brigade *bb, void *ctx);
*/
/**
* 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 @@ typedef apr_status_t (*apr_brigade_flush)(apr_bucket_brigade *bb, void *ctx);
* 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 @@ APU_DECLARE(apr_status_t) apr_brigade_vprintf(apr_bucket_brigade *b,
/**
* 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);