You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ma...@apache.org on 2013/10/31 12:35:41 UTC

svn commit: r1537446 - in /commons/proper/pool/trunk: README.txt RELEASE-NOTES.txt src/site/xdoc/index.xml

Author: markt
Date: Thu Oct 31 11:35:41 2013
New Revision: 1537446

URL: http://svn.apache.org/r1537446
Log:
Naming tweaks

Modified:
    commons/proper/pool/trunk/README.txt
    commons/proper/pool/trunk/RELEASE-NOTES.txt
    commons/proper/pool/trunk/src/site/xdoc/index.xml

Modified: commons/proper/pool/trunk/README.txt
URL: http://svn.apache.org/viewvc/commons/proper/pool/trunk/README.txt?rev=1537446&r1=1537445&r2=1537446&view=diff
==============================================================================
--- commons/proper/pool/trunk/README.txt (original)
+++ commons/proper/pool/trunk/README.txt Thu Oct 31 11:35:41 2013
@@ -1,2 +1,2 @@
 See http://commons.apache.org/pool/ for additional and 
-up-to-date information on Commons Pool.
+up-to-date information on Apache Commons Pool.

Modified: commons/proper/pool/trunk/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/commons/proper/pool/trunk/RELEASE-NOTES.txt?rev=1537446&r1=1537445&r2=1537446&view=diff
==============================================================================
--- commons/proper/pool/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/pool/trunk/RELEASE-NOTES.txt Thu Oct 31 11:35:41 2013
@@ -1,6 +1,7 @@
               Apache Commons Pool 2.0 RELEASE NOTES
 
-The Apache Commons Pool team is pleased to announce the release of commons-pool2-2.0
+The Apache Commons Pool team is pleased to announce the release of Apache
+Commons Pool 2.0
 
 Apache Commons Object Pooling Library
 

Modified: commons/proper/pool/trunk/src/site/xdoc/index.xml
URL: http://svn.apache.org/viewvc/commons/proper/pool/trunk/src/site/xdoc/index.xml?rev=1537446&r1=1537445&r2=1537446&view=diff
==============================================================================
--- commons/proper/pool/trunk/src/site/xdoc/index.xml (original)
+++ commons/proper/pool/trunk/src/site/xdoc/index.xml Thu Oct 31 11:35:41 2013
@@ -23,17 +23,21 @@
    </properties>
 
    <body>
-      <section name="The Pool Component">
+      <section name="Apache Commons Pool">
          <p>
-          Pool provides an Object-pooling API and some pool implementations.  Version 2 of Commons
-          pool is a complete rewrite.  In addition to performance and scalability improvements,
-          version 2 implementations include robust instance tracking and pool monitoring.
+          Apache Commons Pool is an open source software library that provides
+          an object-pooling API and a number of object pool implementations.
+          Version 2 of Apache Commons Pool contains a completely re-written
+          pooling implementation compared to the 1.x series.  In addition to
+          performance and scalability improvements, version 2 includes robust
+          instance tracking and pool monitoring.
          </p>
       </section>
 
       <section name="Releases">
          <p>
-            See the <a href="downloads.html">downloads</a> page for information on obtaining releases.
+            See the <a href="downloads.html">downloads</a> page for information
+            on obtaining releases.
          </p>
       </section>
 
@@ -64,7 +68,7 @@ public interface PooledObjectFactory&lt;
             manage
             <a href="./apidocs/org/apache/commons/pool2/PooledObject"><code>PooledObject</code></a>s. These object wrappers
             maintain object pooling state, enabling <code>PooledObjectFactory</code> methods to have access to data such
-            as instance creation time or time or time of last use.  A 
+            as instance creation time or time of last use.  A 
             <a href="./apidocs/org/apache/commons/pool2/impl/DefaultPooledObject"><code>DefaultPooledObject</code></a> is
             provided, with natural implementations for pooling state methods. The simplest way to implement a
             <code>PoolableObjectFactory</code> is to have it extend