Return-Path: X-Original-To: apmail-lucene-commits-archive@www.apache.org Delivered-To: apmail-lucene-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C242297E8 for ; Wed, 16 May 2012 21:24:23 +0000 (UTC) Received: (qmail 89420 invoked by uid 500); 16 May 2012 21:24:23 -0000 Mailing-List: contact commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list commits@lucene.apache.org Received: (qmail 89412 invoked by uid 99); 16 May 2012 21:24:23 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 May 2012 21:24:23 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 May 2012 21:24:22 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 760BD23889BF; Wed, 16 May 2012 21:24:02 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1339373 - /lucene/dev/trunk/solr/core/src/java/org/apache/solr/util/FileUtils.java Date: Wed, 16 May 2012 21:24:02 -0000 To: commits@lucene.apache.org From: ehatcher@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120516212402.760BD23889BF@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ehatcher Date: Wed May 16 21:24:02 2012 New Revision: 1339373 URL: http://svn.apache.org/viewvc?rev=1339373&view=rev Log: Fix typo Modified: lucene/dev/trunk/solr/core/src/java/org/apache/solr/util/FileUtils.java Modified: lucene/dev/trunk/solr/core/src/java/org/apache/solr/util/FileUtils.java URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/core/src/java/org/apache/solr/util/FileUtils.java?rev=1339373&r1=1339372&r2=1339373&view=diff ============================================================================== --- lucene/dev/trunk/solr/core/src/java/org/apache/solr/util/FileUtils.java (original) +++ lucene/dev/trunk/solr/core/src/java/org/apache/solr/util/FileUtils.java Wed May 16 21:24:02 2012 @@ -29,9 +29,9 @@ public class FileUtils { * Resolves a path relative a base directory. * *

- * This method does what "new File(base,path)" Should do, it wasn't + * This method does what "new File(base,path)" Should do, if 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 + * if it's not absolute, then a File is returned using "path" as a child * of "base") *

*/