Inserted space after [-t] in cmdline usage message to make it clear that there should be a space after the "-t" if it is used

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1132795 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Rowe 2011-06-06 21:54:00 +00:00
parent bdee0a9764
commit 2d56e6a05c
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ public class HighFreqTerms {
private static void usage() {
System.out
.println("\n\n"
+ "java org.apache.lucene.misc.HighFreqTerms <index dir> [-t][number_terms] [field]\n\t -t: include totalTermFreq\n\n");
+ "java org.apache.lucene.misc.HighFreqTerms <index dir> [-t] [number_terms] [field]\n\t -t: include totalTermFreq\n\n");
}
/**
*