Fixed javadoc.

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150210 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Doug Cutting 2004-02-24 20:43:35 +00:00
parent 31974f29f0
commit b8289d7943
1 changed files with 2 additions and 2 deletions

View File

@ -216,7 +216,7 @@ public abstract class IndexReader {
/** Return an array of term frequency vectors for the specified document. /** Return an array of term frequency vectors for the specified document.
* The array contains a vector for each vectorized field in the document. * The array contains a vector for each vectorized field in the document.
* Each vector vector contains term numbers and frequencies for all terms * Each vector vector contains terms and frequencies for those terms
* in a given vectorized field. * in a given vectorized field.
* If no such fields existed, the method returns null. * If no such fields existed, the method returns null.
* *
@ -226,7 +226,7 @@ public abstract class IndexReader {
throws IOException; throws IOException;
/** Return a term frequency vector for the specified document and field. The /** Return a term frequency vector for the specified document and field. The
* vector returned contains term numbers and frequencies for all terms in * vector returned contains terms and frequencies for those terms in
* the specified field of this document, if the field had storeTermVector * the specified field of this document, if the field had storeTermVector
* flag set. If the flag was not set, the method returns null. * flag set. If the flag was not set, the method returns null.
* *