hi, following is a small patch for descriptions in apr_buckets.h
hiro hanai Index: apr_buckets.h =================================================================== RCS file: /pub/cvs/Apache/apr-util/include/apr_buckets.h,v retrieving revision 1.99 diff -u -r1.99 apr_buckets.h --- apr_buckets.h 2001/06/13 19:16:35 1.99 +++ apr_buckets.h 2001/06/22 11:32:38 @@ -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. */
