diff --git a/internal/parser/resultdetail/parser.go b/internal/parser/resultdetail/parser.go index 559c94b..61efd03 100644 --- a/internal/parser/resultdetail/parser.go +++ b/internal/parser/resultdetail/parser.go @@ -37,7 +37,7 @@ func (*ResultDetail) Run(results []stage.ExecutorResult, confAny any) ( float64(result.Memory)/(1024*1024)) } if conf.ShowRunTime { - comment += fmt.Sprintf("RunTime: `%d ms`\n", result.RunTime/1e6) + comment += fmt.Sprintf("Clock Time: `%d ms`\n", result.RunTime/1e6) } if conf.ShowProcPeak { comment += fmt.Sprintf("ProcPeak: `%d`\n", result.ProcPeak)