No dot at the end of the @see tag. javadoc doesn't seem to care, but Eclipse prints a warning.

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150396 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Naber 2004-08-06 20:09:19 +00:00
parent 35d5406541
commit 9510777ce9
1 changed files with 3 additions and 3 deletions

View File

@ -53,13 +53,13 @@ public interface Searchable extends java.rmi.Remote {
/** Expert: Returns the number of documents containing <code>term</code>. /** Expert: Returns the number of documents containing <code>term</code>.
* Called by search code to compute term weights. * Called by search code to compute term weights.
* @see IndexReader#docFreq(Term). * @see IndexReader#docFreq(Term)
*/ */
int docFreq(Term term) throws IOException; int docFreq(Term term) throws IOException;
/** Expert: Returns one greater than the largest possible document number. /** Expert: Returns one greater than the largest possible document number.
* Called by search code to compute term weights. * Called by search code to compute term weights.
* @see IndexReader#maxDoc(). * @see IndexReader#maxDoc()
*/ */
int maxDoc() throws IOException; int maxDoc() throws IOException;
@ -75,7 +75,7 @@ public interface Searchable extends java.rmi.Remote {
/** Expert: Returns the stored fields of document <code>i</code>. /** Expert: Returns the stored fields of document <code>i</code>.
* Called by {@link HitCollector} implementations. * Called by {@link HitCollector} implementations.
* @see IndexReader#document(int). * @see IndexReader#document(int)
*/ */
Document doc(int i) throws IOException; Document doc(int i) throws IOException;