From 4af23c6d84351e059ffce862fe369e1114e4c0cd Mon Sep 17 00:00:00 2001 From: Robert Muir Date: Mon, 18 Jul 2011 14:15:10 +0000 Subject: [PATCH] fix javadocs git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1147887 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/lucene/queries/mlt/MoreLikeThis.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/modules/queries/src/java/org/apache/lucene/queries/mlt/MoreLikeThis.java b/modules/queries/src/java/org/apache/lucene/queries/mlt/MoreLikeThis.java index 7489034cf21..c80d2d4579e 100644 --- a/modules/queries/src/java/org/apache/lucene/queries/mlt/MoreLikeThis.java +++ b/modules/queries/src/java/org/apache/lucene/queries/mlt/MoreLikeThis.java @@ -70,8 +70,7 @@ import java.util.*; *

Initial Usage

*

* This class has lots of options to try to make it efficient and flexible. - * See the body of {@link #main main()} below in the source for real code, or - * if you want pseudo code, the simplest possible usage is as follows. The bold + * The simplest possible usage is as follows. The bold * fragment is specific to this class. *

*

@@ -837,7 +836,7 @@ public final class MoreLikeThis {
   }
 
   /**
-   * @see #retrieveInterestingTerms(java.io.Reader)
+   * @see #retrieveInterestingTerms(java.io.Reader, String)
    */
   public String[] retrieveInterestingTerms(int docNum) throws IOException {
     ArrayList al = new ArrayList(maxQueryTerms);
@@ -860,7 +859,7 @@ public final class MoreLikeThis {
    * @param r the source document
    * @param fieldName field passed to analyzer to use when analyzing the content
    * @return the most interesting words in the document
-   * @see #retrieveTerms(java.io.Reader)
+   * @see #retrieveTerms(java.io.Reader, String)
    * @see #setMaxQueryTerms
    */
   public String[] retrieveInterestingTerms(Reader r, String fieldName) throws IOException {