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/05/18 16:19:34 UTC

svn commit: r1124278 - /subversion/trunk/subversion/libsvn_subr/cache-inprocess.c

Author: danielsh
Date: Wed May 18 14:19:33 2011
New Revision: 1124278

URL: http://svn.apache.org/viewvc?rev=1124278&view=rev
Log:
* subversion/libsvn_subr/cache-inprocess.c
  (inprocess_cache_t.hash, inprocess_cache_t.klen):
     Improve docstring.

Modified:
    subversion/trunk/subversion/libsvn_subr/cache-inprocess.c

Modified: subversion/trunk/subversion/libsvn_subr/cache-inprocess.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_subr/cache-inprocess.c?rev=1124278&r1=1124277&r2=1124278&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_subr/cache-inprocess.c (original)
+++ subversion/trunk/subversion/libsvn_subr/cache-inprocess.c Wed May 18 14:19:33 2011
@@ -36,7 +36,7 @@ typedef struct inprocess_cache_t {
   /* A user-defined identifier for this cache instance. */
   const char *id;
 
-  /* Maps from a key (of size CACHE->KLEN) to a struct cache_entry. */
+  /* HASH maps a key (of size KLEN) to a struct cache_entry. */
   apr_hash_t *hash;
   apr_ssize_t klen;