From 13989e4c6177fca6e9f6522dd9a3eeeee2ebeb04 Mon Sep 17 00:00:00 2001 From: Max Date: Mon, 29 Dec 2025 20:06:35 -0500 Subject: [PATCH] style: better flag explanation --- internal/config/parse_from_args.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.