Made frequency text little less confusing Signed-off-by: Aaron McCurry <[email protected]>
Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/fa96db6f Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/fa96db6f Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/fa96db6f Branch: refs/heads/apache-blur-0.2 Commit: fa96db6f23950b30f7b3c700c1e73f7f1b610011 Parents: e2725de Author: hunterwilliams <[email protected]> Authored: Thu Sep 12 15:12:39 2013 -0400 Committer: Aaron McCurry <[email protected]> Committed: Sun Sep 15 20:56:22 2013 -0400 ---------------------------------------------------------------------- .../src/main/java/org/apache/blur/shell/TermsDataCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/fa96db6f/blur-shell/src/main/java/org/apache/blur/shell/TermsDataCommand.java ---------------------------------------------------------------------- diff --git a/blur-shell/src/main/java/org/apache/blur/shell/TermsDataCommand.java b/blur-shell/src/main/java/org/apache/blur/shell/TermsDataCommand.java index 3744612..46fb3cf 100644 --- a/blur-shell/src/main/java/org/apache/blur/shell/TermsDataCommand.java +++ b/blur-shell/src/main/java/org/apache/blur/shell/TermsDataCommand.java @@ -132,7 +132,7 @@ public class TermsDataCommand extends Command implements TableFirstArgCommand { .withDescription("The value to start with.").create("s")); options.addOption(OptionBuilder.withArgName("size").hasArg() .withDescription("The number of terms to return.").create("n")); - options.addOption(OptionBuilder.withDescription("The frequency of each term.").create("F")); + options.addOption(OptionBuilder.withDescription("Get the frequency of each term.").create("F")); CommandLineParser parser = new PosixParser(); CommandLine cmd = null;
