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 mi...@apache.org on 2008/10/25 12:15:14 UTC

svn commit: r707833 - in /lucene/java/trunk/src/java/org/apache/lucene: index/IndexReader.java search/SpanFilterResult.java

Author: mikemccand
Date: Sat Oct 25 03:15:14 2008
New Revision: 707833

URL: http://svn.apache.org/viewvc?rev=707833&view=rev
Log:
minor javadoc fixes

Modified:
    lucene/java/trunk/src/java/org/apache/lucene/index/IndexReader.java
    lucene/java/trunk/src/java/org/apache/lucene/search/SpanFilterResult.java

Modified: lucene/java/trunk/src/java/org/apache/lucene/index/IndexReader.java
URL: http://svn.apache.org/viewvc/lucene/java/trunk/src/java/org/apache/lucene/index/IndexReader.java?rev=707833&r1=707832&r2=707833&view=diff
==============================================================================
--- lucene/java/trunk/src/java/org/apache/lucene/index/IndexReader.java (original)
+++ lucene/java/trunk/src/java/org/apache/lucene/index/IndexReader.java Sat Oct 25 03:15:14 2008
@@ -557,11 +557,12 @@
   }
   
   /**
-   *  Return an array of term frequency vectors for the specified document.
-   *  The array contains a vector for each vectorized field in the document.
-   *  Each vector contains terms and frequencies for all terms in a given vectorized field.
-   *  If no such fields existed, the method returns null. The term vectors that are
-   * returned my either be of type TermFreqVector or of type TermPositionsVector if
+   * Return an array of term frequency vectors for the specified document.
+   * The array contains a vector for each vectorized field in the document.
+   * Each vector contains terms and frequencies for all terms in a given vectorized field.
+   * If no such fields existed, the method returns null. The term vectors that are
+   * returned may either be of type {@link TermFreqVector}
+   * or of type {@link TermPositionVector} if
    * positions or offsets have been stored.
    * 
    * @param docNumber document for which term frequency vectors are returned
@@ -575,11 +576,11 @@
 
 
   /**
-   *  Return a term frequency vector for the specified document and field. The
-   *  returned vector contains terms and frequencies for the terms in
-   *  the specified field of this document, if the field had the storeTermVector
-   *  flag set. If termvectors had been stored with positions or offsets, a 
-   *  TermPositionsVector is returned.
+   * Return a term frequency vector for the specified document and field. The
+   * returned vector contains terms and frequencies for the terms in
+   * the specified field of this document, if the field had the storeTermVector
+   * flag set. If termvectors had been stored with positions or offsets, a 
+   * {@link TermPositionVector} is returned.
    * 
    * @param docNumber document for which the term frequency vector is returned
    * @param field field for which the term frequency vector is returned.

Modified: lucene/java/trunk/src/java/org/apache/lucene/search/SpanFilterResult.java
URL: http://svn.apache.org/viewvc/lucene/java/trunk/src/java/org/apache/lucene/search/SpanFilterResult.java?rev=707833&r1=707832&r2=707833&view=diff
==============================================================================
--- lucene/java/trunk/src/java/org/apache/lucene/search/SpanFilterResult.java (original)
+++ lucene/java/trunk/src/java/org/apache/lucene/search/SpanFilterResult.java Sat Oct 25 03:15:14 2008
@@ -21,7 +21,7 @@
 
 
 /**
- *  The results of a SpanQueryFilter.  Wraps the BitSet and the position infomration from the SpanQuery
+ *  The results of a SpanQueryFilter.  Wraps the BitSet and the position information from the SpanQuery
  *
  *<p/>
  * NOTE: This API is still experimental and subject to change.