fixed help text in sstabledump

Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/5a77bd1f
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/5a77bd1f
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/5a77bd1f

Branch: refs/heads/trunk
Commit: 5a77bd1f11823c64e7258ae03b98d539eabc7555
Parents: 9b48a0b
Author: Jon Haddad <[email protected]>
Authored: Wed Apr 20 15:44:26 2016 +0100
Committer: Yuki Morishita <[email protected]>
Committed: Wed Apr 20 09:52:29 2016 -0500

----------------------------------------------------------------------
 src/java/org/apache/cassandra/tools/SSTableExport.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/5a77bd1f/src/java/org/apache/cassandra/tools/SSTableExport.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/cassandra/tools/SSTableExport.java 
b/src/java/org/apache/cassandra/tools/SSTableExport.java
index fd3b9cb..d918ff4 100644
--- a/src/java/org/apache/cassandra/tools/SSTableExport.java
+++ b/src/java/org/apache/cassandra/tools/SSTableExport.java
@@ -65,17 +65,17 @@ public class SSTableExport
     {
         Config.setClientMode(true);
 
-        Option optKey = new Option(KEY_OPTION, true, "Row key");
+        Option optKey = new Option(KEY_OPTION, true, "Partition key");
         // Number of times -k <key> can be passed on the command line.
         optKey.setArgs(500);
         options.addOption(optKey);
 
-        Option excludeKey = new Option(EXCLUDE_KEY_OPTION, true, "Excluded row 
key");
+        Option excludeKey = new Option(EXCLUDE_KEY_OPTION, true, "Excluded 
partition key");
         // Number of times -x <key> can be passed on the command line.
         excludeKey.setArgs(500);
         options.addOption(excludeKey);
 
-        Option optEnumerate = new Option(ENUMERATE_KEYS_OPTION, false, 
"enumerate keys only");
+        Option optEnumerate = new Option(ENUMERATE_KEYS_OPTION, false, 
"enumerate partition keys only");
         options.addOption(optEnumerate);
 
         Option debugOutput = new Option(DEBUG_OUTPUT_OPTION, false, "CQL row 
per line internal representation");

Reply via email to