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 2018/12/25 20:37:30 UTC

svn commit: r1849723 - /subversion/trunk/subversion/libsvn_subr/pool.c

Author: brane
Date: Tue Dec 25 20:37:30 2018
New Revision: 1849723

URL: http://svn.apache.org/viewvc?rev=1849723&view=rev
Log:
* subversion/libsvn_subr/pool.c (svn_pool_create_allocator):
   Fix typo in comment. No functional change.

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

Modified: subversion/trunk/subversion/libsvn_subr/pool.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_subr/pool.c?rev=1849723&r1=1849722&r2=1849723&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_subr/pool.c (original)
+++ subversion/trunk/subversion/libsvn_subr/pool.c Tue Dec 25 20:37:30 2018
@@ -133,7 +133,7 @@ svn_pool_create_allocator(svn_boolean_t
 #endif
 
   /* By default, allocators are *not* thread-safe. We must provide a mutex
-   * if we want thread-safety for that mutex. */
+   * if we want thread-safety for that pool. */
 
 #if APR_HAS_THREADS
   if (thread_safe)