You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/12/14 15:30:25 UTC

(commons-pool) branch master updated: Javadoc

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-pool.git


The following commit(s) were added to refs/heads/master by this push:
     new d5617cb5 Javadoc
d5617cb5 is described below

commit d5617cb5e522005dcd2c1169d967b2c4a5411474
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Dec 14 10:30:21 2023 -0500

    Javadoc
---
 src/main/java/org/apache/commons/pool3/PoolUtils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/pool3/PoolUtils.java b/src/main/java/org/apache/commons/pool3/PoolUtils.java
index 06d48034..c43f7bf7 100644
--- a/src/main/java/org/apache/commons/pool3/PoolUtils.java
+++ b/src/main/java/org/apache/commons/pool3/PoolUtils.java
@@ -1040,7 +1040,7 @@ public final class PoolUtils {
          */
         private final ReentrantReadWriteLock readWriteLock = new ReentrantReadWriteLock();
 
-        /** the underlying object pool */
+        /** The underlying object pool */
         private final ObjectPool<T, E> pool;
 
         /**