cleaned up class javadoc

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1433760 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Rowe 2013-01-16 00:18:46 +00:00
parent 9d332464d7
commit 79f5842532

View File

@ -40,11 +40,13 @@ import java.util.Arrays;
import java.util.Comparator;
/**
*
* <code>HighFreqTerms</code> class extracts the top n most frequent terms
* (by document frequency ) from an existing Lucene index and reports their document frequencey.
* If the -t flag is and reports both their document frequency and their total tf (total number of occurences)
* in order of highest total tf
* (by document frequency) from an existing Lucene index and reports their
* document frequency.
* <p>
* If the -t flag is given, both document frequency and total tf (total
* number of occurrences) are reported, ordered by descending total tf.
*
*/
public class HighFreqTerms {