From: Christophe Jaillet Date: Thu, 17 Jul 2014 21:36:02 +0000 (+0000) Subject: Fix typo spotted by Mike Rumph X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=50c3a93de4c24c1e1400557721111b26a1a3c217;p=thirdparty%2Fapache%2Fhttpd.git Fix typo spotted by Mike Rumph git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1611481 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/util_varbuf.h b/include/util_varbuf.h index c6e6fc04a6f..8e45578e04f 100644 --- a/include/util_varbuf.h +++ b/include/util_varbuf.h @@ -62,12 +62,12 @@ struct ap_varbuf { * the buffer memory will be released when this pool is cleared. */ apr_pool_t *pool; - /** Opaque info for memory allocation */ + /** Opaque info for memory allocation. */ struct ap_varbuf_info *info; }; /** - * Initialize a resizable buffer. It is safe to re-initialize a prevously + * Initialize a resizable buffer. It is safe to re-initialize a previously * used ap_varbuf. The old buffer will be released when the corresponding * pool is cleared. The buffer remains usable until the pool is cleared, * even if the ap_varbuf was located on the stack and has gone out of scope.