trawick 01/06/22 05:04:50
Modified: include apr_buckets.h
Log:
documentation corrections
Submitted by: Hiroyuki Hanai <[EMAIL PROTECTED]>
Reviewed by: Jeff Trawick
Revision Changes Path
1.100 +5 -5 apr-util/include/apr_buckets.h
Index: apr_buckets.h
===================================================================
RCS file: /home/cvs/apr-util/include/apr_buckets.h,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- apr_buckets.h 2001/06/13 19:16:35 1.99
+++ apr_buckets.h 2001/06/22 12:04:50 1.100
@@ -488,7 +488,7 @@
#define APR_BUCKET_IS_POOL(e) (e->type == &apr_bucket_type_pool)
/*
- * General-purpose reference counting for the varous bucket types.
+ * General-purpose reference counting for the various bucket types.
*
* Any bucket type that keeps track of the resources it uses (i.e.
* most of them except for IMMORTAL, TRANSIENT, and EOS) needs to
@@ -1048,12 +1048,12 @@
/* ***** Functions to Create Buckets of varying types ***** */
/*
* Each bucket type foo has two initialization functions:
- * apr_bucket_make_foo which sets up some already-allocated memory as a
- * bucket of type foo; and apr_bucket_create_foo which allocates memory
+ * apr_bucket_foo_make which sets up some already-allocated memory as a
+ * bucket of type foo; and apr_bucket_foo_create which allocates memory
* for the bucket, calls apr_bucket_make_foo, and initializes the
- * bucket's list pointers. The apr_bucket_make_foo functions are used
+ * bucket's list pointers. The apr_bucket_foo_make functions are used
* inside the bucket code to change the type of buckets in place;
- * other code should call apr_bucket_create_foo. All the initialization
+ * other code should call apr_bucket_foo_create. All the initialization
* functions change nothing if they fail.
*/