You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2014/07/17 23:36:03 UTC

svn commit: r1611481 - /httpd/httpd/trunk/include/util_varbuf.h

Author: jailletc36
Date: Thu Jul 17 21:36:02 2014
New Revision: 1611481

URL: http://svn.apache.org/r1611481
Log:
Fix typo spotted by Mike Rumph

Modified:
    httpd/httpd/trunk/include/util_varbuf.h

Modified: httpd/httpd/trunk/include/util_varbuf.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/util_varbuf.h?rev=1611481&r1=1611480&r2=1611481&view=diff
==============================================================================
--- httpd/httpd/trunk/include/util_varbuf.h (original)
+++ httpd/httpd/trunk/include/util_varbuf.h Thu Jul 17 21:36:02 2014
@@ -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.