You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2010/05/17 12:01:26 UTC

svn commit: r945057 - /lucene/dev/trunk/lucene/src/java/org/apache/lucene/util/ArrayUtil.java

Author: mikemccand
Date: Mon May 17 10:01:26 2010
New Revision: 945057

URL: http://svn.apache.org/viewvc?rev=945057&view=rev
Log:
fix typo in comment

Modified:
    lucene/dev/trunk/lucene/src/java/org/apache/lucene/util/ArrayUtil.java

Modified: lucene/dev/trunk/lucene/src/java/org/apache/lucene/util/ArrayUtil.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/src/java/org/apache/lucene/util/ArrayUtil.java?rev=945057&r1=945056&r2=945057&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/src/java/org/apache/lucene/util/ArrayUtil.java (original)
+++ lucene/dev/trunk/lucene/src/java/org/apache/lucene/util/ArrayUtil.java Mon May 17 10:01:26 2010
@@ -168,7 +168,7 @@ public final class ArrayUtil {
     }
 
     // asymptotic exponential growth by 1/8th, favors
-    // spending a bit more CPU to not tye up too much wasted
+    // spending a bit more CPU to not tie up too much wasted
     // RAM:
     int extra = minTargetSize >> 3;