You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by sh...@apache.org on 2009/03/18 18:50:35 UTC

svn commit: r755674 - /lucene/solr/trunk/src/common/org/apache/solr/common/util/FileUtils.java

Author: shalin
Date: Wed Mar 18 17:50:35 2009
New Revision: 755674

URL: http://svn.apache.org/viewvc?rev=755674&view=rev
Log:
Fixing a typo

Modified:
    lucene/solr/trunk/src/common/org/apache/solr/common/util/FileUtils.java

Modified: lucene/solr/trunk/src/common/org/apache/solr/common/util/FileUtils.java
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/src/common/org/apache/solr/common/util/FileUtils.java?rev=755674&r1=755673&r2=755674&view=diff
==============================================================================
--- lucene/solr/trunk/src/common/org/apache/solr/common/util/FileUtils.java (original)
+++ lucene/solr/trunk/src/common/org/apache/solr/common/util/FileUtils.java Wed Mar 18 17:50:35 2009
@@ -29,8 +29,8 @@
    * Resolves a path relative a base directory.
    *
    * <p>
-   * This method does what "new File(base,path)" <b>Should</b> do, it it wasn't 
-   * completley lame: If path is absolute, then a File for that path is returned; 
+   * This method does what "new File(base,path)" <b>Should</b> do, it wasn't 
+   * completely lame: If path is absolute, then a File for that path is returned;
    * if it's not absoluve, then a File is returnd using "path" as a child 
    * of "base") 
    * </p>