fix up options display in --help output
authorBdale Garbee <bdale@gag.com>
Mon, 15 Jan 2018 19:38:47 +0000 (16:38 -0300)
committerBdale Garbee <bdale@gag.com>
Mon, 15 Jan 2018 19:38:47 +0000 (16:38 -0300)
teststand/TestStand.java

index d13906a23cdf2f374b667b44945cafa5f4e5ba49..1e9a0e6fcea7fdb28fee8eb535c463e8664442ad 100644 (file)
@@ -446,10 +446,10 @@ public class TestStand extends AltosUIFrame implements AltosEepromGrapher {
        public static void help(int code) {
                System.out.printf("Usage: teststand [OPTION]... [FILE]...\n");
                System.out.printf("  Options:\n");
-               System.out.printf("    --graph <filename>\t\tgraph a flight\n");
-               System.out.printf("    --summary <filename>\t\tText summary of a flight\n");
-               System.out.printf("    --oneline <filename>\t\tOne line summary of a flight\n");
-               System.out.printf("    --csv\tgenerate comma separated output for spreadsheets, etc\n");
+               System.out.printf("    --graph <filename>\t\tGraph a test\n");
+               System.out.printf("    --summary <filename>\tText summary of a test\n");
+               System.out.printf("    --oneline <filename>\tOne line summary of a test\n");
+               System.out.printf("    --csv\t\t\tGenerate comma separated output for spreadsheets, etc\n");
                System.exit(code);
        }