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 2010/06/01 19:07:05 UTC

svn commit: r950168 - /commons/proper/pool/trunk/src/java/org/apache/commons/pool/impl/EvictionTimer.java

Author: markt
Date: Tue Jun  1 17:07:04 2010
New Revision: 950168

URL: http://svn.apache.org/viewvc?rev=950168&view=rev
Log:
Typo

Modified:
    commons/proper/pool/trunk/src/java/org/apache/commons/pool/impl/EvictionTimer.java

Modified: commons/proper/pool/trunk/src/java/org/apache/commons/pool/impl/EvictionTimer.java
URL: http://svn.apache.org/viewvc/commons/proper/pool/trunk/src/java/org/apache/commons/pool/impl/EvictionTimer.java?rev=950168&r1=950167&r2=950168&view=diff
==============================================================================
--- commons/proper/pool/trunk/src/java/org/apache/commons/pool/impl/EvictionTimer.java (original)
+++ commons/proper/pool/trunk/src/java/org/apache/commons/pool/impl/EvictionTimer.java Tue Jun  1 17:07:04 2010
@@ -24,7 +24,7 @@ import java.util.TimerTask;
  * <p>
  * Provides a shared idle object eviction timer for all pools. This class wraps
  * the standard {@link Timer} and keeps track of how many pools are using it.
- * If no pools are using the timer, it is canceled. This prevents a thread
+ * If no pools are using the timer, it is cancelled. This prevents a thread
  * being left running which, in application server environments, can lead to
  * memory leads and/or prevent applications from shutting down or reloading
  * cleanly.