Index: src/java/org/apache/lucene/index/IndexReader.java =================================================================== RCS file: /home/cvspublic/jakarta-lucene/src/java/org/apache/lucene/index/IndexReader.java,v retrieving revision 1.26 diff -u -r1.26 IndexReader.java --- src/java/org/apache/lucene/index/IndexReader.java 20 Feb 2004 20:14:55 -0000 1.26 +++ src/java/org/apache/lucene/index/IndexReader.java 24 Feb 2004 20:04:39 -0000 @@ -216,7 +216,7 @@ /** 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 vector contains term numbers and frequencies for all terms + * Each vector contains terms and frequencies for all terms * in a given vectorized field. * If no such fields existed, the method returns null. * @@ -226,7 +226,7 @@ throws IOException; /** 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 all terms in * the specified field of this document, if the field had storeTermVector * flag set. If the flag was not set, the method returns null. *