Return-Path: Delivered-To: apmail-lucene-java-commits-archive@www.apache.org Received: (qmail 17736 invoked from network); 6 Oct 2007 11:09:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 6 Oct 2007 11:09:43 -0000 Received: (qmail 23962 invoked by uid 500); 6 Oct 2007 11:09:31 -0000 Delivered-To: apmail-lucene-java-commits-archive@lucene.apache.org Received: (qmail 23936 invoked by uid 500); 6 Oct 2007 11:09:30 -0000 Mailing-List: contact java-commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-dev@lucene.apache.org Delivered-To: mailing list java-commits@lucene.apache.org Received: (qmail 23925 invoked by uid 99); 6 Oct 2007 11:09:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 06 Oct 2007 04:09:30 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 06 Oct 2007 11:09:42 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A7E6F1A9832; Sat, 6 Oct 2007 04:09:21 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r582478 - /lucene/java/trunk/src/java/org/apache/lucene/search/Scorer.java Date: Sat, 06 Oct 2007 11:09:21 -0000 To: java-commits@lucene.apache.org From: dnaber@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071006110921.A7E6F1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dnaber Date: Sat Oct 6 04:09:20 2007 New Revision: 582478 URL: http://svn.apache.org/viewvc?rev=582478&view=rev Log: fix typos in javadoc Modified: lucene/java/trunk/src/java/org/apache/lucene/search/Scorer.java Modified: lucene/java/trunk/src/java/org/apache/lucene/search/Scorer.java URL: http://svn.apache.org/viewvc/lucene/java/trunk/src/java/org/apache/lucene/search/Scorer.java?rev=582478&r1=582477&r2=582478&view=diff ============================================================================== --- lucene/java/trunk/src/java/org/apache/lucene/search/Scorer.java (original) +++ lucene/java/trunk/src/java/org/apache/lucene/search/Scorer.java Sat Oct 6 04:09:20 2007 @@ -78,7 +78,7 @@ /** * Advances to the document matching this Scorer with the lowest doc Id - * greater then the current value of {@link #doc()} (or to the matching + * greater than the current value of {@link #doc()} (or to the matching * document with the lowest doc Id if next has never been called on * this Scorer). * @@ -109,7 +109,7 @@ * *

* The behavior of this method is undefined if the target specified is - * less then or equal to the current value of {@link #doc()} + * less than or equal to the current value of {@link #doc()}. *

* Behaves as if written: *