You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2012/11/26 13:33:00 UTC

svn commit: r1413576 - /subversion/trunk/subversion/libsvn_subr/string.c

Author: brane
Date: Mon Nov 26 12:33:00 2012
New Revision: 1413576

URL: http://svn.apache.org/viewvc?rev=1413576&view=rev
Log:
* subversion/libsvn_subr/string.c (membuf_create) Fix typos in docstring.
   No functional change.

Modified:
    subversion/trunk/subversion/libsvn_subr/string.c

Modified: subversion/trunk/subversion/libsvn_subr/string.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_subr/string.c?rev=1413576&r1=1413575&r2=1413576&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_subr/string.c (original)
+++ subversion/trunk/subversion/libsvn_subr/string.c Mon Nov 26 12:33:00 2012
@@ -39,10 +39,10 @@
 
 
 /* Allocate the space for a memory buffer. The data pointer will be NULL
- * if the size is NULL.
+ * if the size is 0.
  * N.B.: The stringbuf creation functions use this, but since stringbufs
- *       stringbufs alwase consume at least 1 byte for the NUL terminator,
- *       the resulting data pointers will never be NULL.
+ *       always consume at least 1 byte for the NUL terminator, the
+ *       resulting data pointers will never be NULL.
  */
 static APR_INLINE void
 membuf_create(apr_size_t size, apr_pool_t *pool,