From 7b339cc99107e85df178890545047f711346bd4c Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Mon, 15 Jan 2018 16:38:47 -0300 Subject: [PATCH] fix up options display in --help output --- teststand/TestStand.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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); } -- 2.30.2