From 00b556e9b5bf9ff88599f9e3b3beeb4ebf5291f5 Mon Sep 17 00:00:00 2001 From: AllenZMC Date: Sun, 11 Aug 2019 18:15:56 +0800 Subject: [PATCH] fix mis-spelling in template.go Signed-off-by: czm --- template/template.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/template.go b/template/template.go index 0eb0ed2be..031bdbd8b 100644 --- a/template/template.go +++ b/template/template.go @@ -230,7 +230,7 @@ func NewTemplateExpander( if minutes != 0 { return fmt.Sprintf("%s%dm %ds", sign, minutes, seconds) } - // For seconds, we display 4 significant digts. + // For seconds, we display 4 significant digits. return fmt.Sprintf("%s%.4gs", sign, v) } prefix := "" -- GitLab