typofix in seqgen online help

This commit is contained in:
John Kerl 2021-05-10 04:31:05 +00:00
parent e077f32ed2
commit 95fbb397af
2 changed files with 6 additions and 6 deletions

View file

@ -686,9 +686,9 @@ output as specified by the options
Options:
-f {name} (default "i") Field name for counters.
-start {value} (default 1) Inclusive start value.
-step {value} (default 1) Step value.
-stop {value} (default 100) Inclusive stop value.
--start {value} (default 1) Inclusive start value.
--step {value} (default 1) Step value.
--stop {value} (default 100) Inclusive stop value.
-h|--help Show this message.
Start, stop, and/or step may be floating-point. Output is integer if start,
stop, and step are all integers. Step may be negative. It may not be zero

View file

@ -34,9 +34,9 @@ func transformerSeqgenUsage(
fmt.Fprintf(o, "\n")
fmt.Fprintf(o, "Options:\n")
fmt.Fprintf(o, "-f {name} (default \"i\") Field name for counters.\n")
fmt.Fprintf(o, "-start {value} (default 1) Inclusive start value.\n")
fmt.Fprintf(o, "-step {value} (default 1) Step value.\n")
fmt.Fprintf(o, "-stop {value} (default 100) Inclusive stop value.\n")
fmt.Fprintf(o, "--start {value} (default 1) Inclusive start value.\n")
fmt.Fprintf(o, "--step {value} (default 1) Step value.\n")
fmt.Fprintf(o, "--stop {value} (default 100) Inclusive stop value.\n")
fmt.Fprintf(o, "-h|--help Show this message.\n")
fmt.Fprintf(o, "Start, stop, and/or step may be floating-point. Output is integer if start,\n")