You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2010/08/29 18:58:14 UTC

svn commit: r990600 - /subversion/branches/performance/subversion/libsvn_subr/cache-membuffer.c

Author: stefan2
Date: Sun Aug 29 16:58:14 2010
New Revision: 990600

URL: http://svn.apache.org/viewvc?rev=990600&view=rev
Log:
Minor typo / grammar fix in commentary. 

* subversion/libsvn_subr/cache-membuffer.c
  (svn_cache__membuffer_cache_create, membuffer_cache_set): typo

Modified:
    subversion/branches/performance/subversion/libsvn_subr/cache-membuffer.c

Modified: subversion/branches/performance/subversion/libsvn_subr/cache-membuffer.c
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/libsvn_subr/cache-membuffer.c?rev=990600&r1=990599&r2=990600&view=diff
==============================================================================
--- subversion/branches/performance/subversion/libsvn_subr/cache-membuffer.c (original)
+++ subversion/branches/performance/subversion/libsvn_subr/cache-membuffer.c Sun Aug 29 16:58:14 2010
@@ -694,7 +694,7 @@ svn_cache__membuffer_cache_create(svn_me
   int i, k;
 
   /* We use this sub-pool to allocate the data buffer and the dictionary
-   * so that we can release that memory easily upon OOM.
+   * so that we can release this memory easily upon OOM.
    */
   apr_pool_t *sub_pool = svn_pool_create(pool);
 
@@ -835,7 +835,7 @@ membuffer_cache_set(svn_membuffer_t *cac
    */
   if (cache->data_size / 4 > size && ensure_data_insertable(cache, size))
     {
-      /* Remove old data for this key, if it that exists.
+      /* Remove old data for this key, if that exists.
        * Get an unused entry for the key and and initialize it with
        * the serialized item's (future) posion within data buffer.
        */