Skip to content

Commit d70fdbc

Browse files
lianchengrdblue
authored andcommitted
PARQUET-168: Fixes parquet-tools command line option description
<!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/apache/incubator-parquet-mr/106) <!-- Reviewable:end --> Author: Cheng Lian <lian@databricks.com> Closes apache#106 from liancheng/PARQUET-168 and squashes the following commits: 4524f2d [Cheng Lian] Fixes command line option description
1 parent 52f3240 commit d70fdbc

File tree

1 file changed

+2
-2
lines changed
  • parquet-tools/src/main/java/parquet/tools

1 file changed

+2
-2
lines changed

parquet-tools/src/main/java/parquet/tools/Main.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public class Main {
5252
.create();
5353

5454
Option debg = OptionBuilder.withLongOpt("debug")
55-
.withDescription("Disable color output even if supported")
55+
.withDescription("Enable debug output")
5656
.create();
5757

5858
OPTIONS.addOption(help);
@@ -95,7 +95,7 @@ public static void showUsage(HelpFormatter format, PrintWriter err, String name,
9595
if (usage != null && usage.length >= 1) {
9696
ustr = ustr + " " + usage[0];
9797
}
98-
98+
9999
format.printUsage(err, WIDTH, ustr);
100100
format.printWrapped(err, WIDTH, LEFT_PAD, "where option is one of:");
101101
format.printOptions(err, WIDTH, options, LEFT_PAD, DESC_PAD);

0 commit comments

Comments
 (0)