diff --git a/internal/config/parse_from_args.go b/internal/config/parse_from_args.go index 9cbf870..6a2b688 100644 --- a/internal/config/parse_from_args.go +++ b/internal/config/parse_from_args.go @@ -11,7 +11,7 @@ func FromArgs() (*Config, error) { verbose := flag.Bool("v", false, "Verbosity. If set, the program will print logs.") explanation := flag.Bool("x", false, "Explanation. Whether or not to show all reduction steps.") statistics := flag.Bool("s", false, "Statistics. If set, the process will print various statistics about the run.") - profile := flag.String("p", "", "CPU profiling. If set, the program will run a performance profile during execution.") + profile := flag.String("p", "", "CPU profiling. If an output file is defined, the program will profile its execution and dump its results into it.") flag.Parse() // There must only be one input argument.