Better wording

This commit is contained in:
Tomás Senart
2013-09-11 12:47:32 +01:00
parent ea5764489f
commit 3059854751
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ func attackCmd(args []string) command {
targetsf := fs.String("targets", "targets.txt", "Targets file")
ordering := fs.String("ordering", "random", "Attack ordering [sequential, random]")
duration := fs.Duration("duration", 10*time.Second, "Duration of the test")
output := fs.String("output", "stdout", "Vegeta data file")
output := fs.String("output", "stdout", "Output file")
fs.Parse(args)
return func() error {

View File

@@ -11,7 +11,7 @@ import (
func reportCmd(args []string) command {
fs := flag.NewFlagSet("report", flag.ExitOnError)
reporter := fs.String("reporter", "text", "Reporter [text, json, plot:timings]")
input := fs.String("input", "stdin", "Vegeta data file")
input := fs.String("input", "stdin", "Input file")
output := fs.String("output", "stdout", "Output file")
fs.Parse(args)