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/11/24 23:59:10 UTC

svn commit: r1038860 - /subversion/trunk/subversion/svnserve/main.c

Author: stsp
Date: Wed Nov 24 22:59:10 2010
New Revision: 1038860

URL: http://svn.apache.org/viewvc?rev=1038860&view=rev
Log:
* subversion/svnserve/main.c
  (main): Typos and punctuation fixes in comments. No functional change.

Modified:
    subversion/trunk/subversion/svnserve/main.c

Modified: subversion/trunk/subversion/svnserve/main.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svnserve/main.c?rev=1038860&r1=1038859&r2=1038860&view=diff
==============================================================================
--- subversion/trunk/subversion/svnserve/main.c (original)
+++ subversion/trunk/subversion/svnserve/main.c Wed Nov 24 22:59:10 2010
@@ -795,9 +795,9 @@ int main(int argc, const char *argv[])
         return ERROR_SUCCESS;
 #endif
 
-      /* If we are using fulltext caches etc., we will allocate many large
-         chunks of memory of various sizes outside the cachde for those
-         fulltexts. Make sure, we use the memory wisely: use an allocator
+      /* If we are using fulltext caches etc. we will allocate many large
+         chunks of memory of various sizes outside the cache for those
+         fulltexts. Make sure we use the memory wisely: use an allocator
          that causes memory fragments to be given back to the OS early. */
 
       if (apr_allocator_create(&allocator))
@@ -807,7 +807,7 @@ int main(int argc, const char *argv[])
 
       /* Non-standard pool handling.  The main thread never blocks to join
          the connection threads so it cannot clean up after each one.  So
-         separate pools, that can be cleared at thread exit, are used */
+         separate pools that can be cleared at thread exit are used. */
 
       connection_pool = svn_pool_create_ex(NULL, allocator);
       apr_allocator_owner_set(allocator, connection_pool);