You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2011/07/09 00:07:13 UTC

svn commit: r1144524 - /subversion/trunk/subversion/libsvn_fs_fs/caching.c

Author: danielsh
Date: Fri Jul  8 22:07:13 2011
New Revision: 1144524

URL: http://svn.apache.org/viewvc?rev=1144524&view=rev
Log:
* subversion/libsvn_fs_fs/caching.c
  (create_cache): Docstring tweaks.

Modified:
    subversion/trunk/subversion/libsvn_fs_fs/caching.c

Modified: subversion/trunk/subversion/libsvn_fs_fs/caching.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_fs/caching.c?rev=1144524&r1=1144523&r2=1144524&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_fs_fs/caching.c (original)
+++ subversion/trunk/subversion/libsvn_fs_fs/caching.c Fri Jul  8 22:07:13 2011
@@ -189,10 +189,11 @@ init_callbacks(svn_cache__t *cache,
   return SVN_NO_ERROR;
 }
 
-/* Sets CACHE_P with a pointer to cache instance based on provided options.
+/* Sets *CACHE_P to cache instance based on provided options.
  * Creates memcache if MEMCACHE is not NULL. Creates membuffer cache if
  * MEMBUFFER is not NULL. Fallbacks to inprocess cache if MEMCACHE and
- * MEMBUFFER is NULL and pages is non-zero.
+ * MEMBUFFER are NULL and pages is non-zero.  Sets *CACHE_P to NULL
+ * otherwise.
  *
  * Cache is allocated in POOL.
  * */