From: Bdale Garbee Date: Mon, 15 Jan 2018 19:38:47 +0000 (-0300) Subject: fix up options display in --help output X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=7b339cc99107e85df178890545047f711346bd4c fix up options display in --help output --- diff --git a/teststand/TestStand.java b/teststand/TestStand.java index d13906a2..1e9a0e6f 100644 --- a/teststand/TestStand.java +++ b/teststand/TestStand.java @@ -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 \t\tgraph a flight\n"); - System.out.printf(" --summary \t\tText summary of a flight\n"); - System.out.printf(" --oneline \t\tOne line summary of a flight\n"); - System.out.printf(" --csv\tgenerate comma separated output for spreadsheets, etc\n"); + System.out.printf(" --graph \t\tGraph a test\n"); + System.out.printf(" --summary \tText summary of a test\n"); + System.out.printf(" --oneline \tOne line summary of a test\n"); + System.out.printf(" --csv\t\t\tGenerate comma separated output for spreadsheets, etc\n"); System.exit(code); }