From 91a51cb84edbd9a1f0041e7c5fd66f63e7fe7eeb Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Thu, 26 Jun 2025 07:35:41 -0400 Subject: [PATCH] chore(parser/resultdetail): RunTime -> Clock Time --- internal/parser/resultdetail/parser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)