style: better flag explanation

This commit is contained in:
2025-12-29 20:06:35 -05:00
parent 529abb7c26
commit 13989e4c61

View File

@@ -11,7 +11,7 @@ func FromArgs() (*Config, error) {
verbose := flag.Bool("v", false, "Verbosity. If set, the program will print logs.") 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.") 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.") 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() flag.Parse()
// There must only be one input argument. // There must only be one input argument.