You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@lucene.apache.org by ho...@apache.org on 2007/10/05 21:26:34 UTC

svn commit: r582375 - /lucene/java/trunk/src/java/org/apache/lucene/search/BooleanQuery.java

Author: hossman
Date: Fri Oct  5 12:26:32 2007
New Revision: 582375

URL: http://svn.apache.org/viewvc?rev=582375&view=rev
Log:
javadoc typos

Modified:
    lucene/java/trunk/src/java/org/apache/lucene/search/BooleanQuery.java

Modified: lucene/java/trunk/src/java/org/apache/lucene/search/BooleanQuery.java
URL: http://svn.apache.org/viewvc/lucene/java/trunk/src/java/org/apache/lucene/search/BooleanQuery.java?rev=582375&r1=582374&r2=582375&view=diff
==============================================================================
--- lucene/java/trunk/src/java/org/apache/lucene/search/BooleanQuery.java (original)
+++ lucene/java/trunk/src/java/org/apache/lucene/search/BooleanQuery.java Fri Oct  5 12:26:32 2007
@@ -317,8 +317,8 @@
    * order.
    *
    * <p>
-   * Background: llthough the contract of the Scorer class requires that
-   * documents be iterated in order of doc id this was not true in early
+   * Background: although the contract of the Scorer class requires that
+   * documents be iterated in order of doc id, this was not true in early
    * versions of Lucene.  Many pieces of functionality in the current
    * Lucene code base have undefined behavior if this contract is not
    * upheld, but in some specific simple cases may be faster.  (For
@@ -327,7 +327,7 @@
    * </p>
    *
    * <p>
-   * Specifics: By setting this option to this true, calls to 
+   * Specifics: By setting this option to true, calls to 
    * {@link HitCollector#collect(int,float)} might be
    * invoked first for docid N and only later for docid N-1.
    * Being static, this setting is system wide.