From f3c98105165645555106bf51b13a89629478aaff Mon Sep 17 00:00:00 2001 From: Dan Gottlieb Date: Mon, 21 Oct 2024 11:48:04 -0400 Subject: [PATCH] appease the linter --- ftdc/custom_format.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ftdc/custom_format.go b/ftdc/custom_format.go index 42a0991b4c4..b3f97b9e2c3 100644 --- a/ftdc/custom_format.go +++ b/ftdc/custom_format.go @@ -118,7 +118,7 @@ func writeDatum(time int64, prev, curr []float32, output io.Writer) { } } -var notStructError = errors.New("Stats object is not a struct") +var notStructError = errors.New("stats object is not a struct") func isNumeric(kind reflect.Kind) bool { return kind == reflect.Bool ||