From 5dbcd858e61d2628c74f5430697f227864546d28 Mon Sep 17 00:00:00 2001 From: Thomas Oettli Date: Tue, 23 May 2023 16:02:17 +0200 Subject: [PATCH] Fix typo --- pkg/expr/functions/legendValue/function.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/expr/functions/legendValue/function.go b/pkg/expr/functions/legendValue/function.go index 84e2a5d3..7c2b5347 100644 --- a/pkg/expr/functions/legendValue/function.go +++ b/pkg/expr/functions/legendValue/function.go @@ -73,7 +73,7 @@ func (f *legendValue) Do(ctx context.Context, e parser.Expr, from, until int32, } else { return nil, fmt.Errorf("%s is not supported for system", system) } - values = append(values, fmt.Sprintf("%s: %s", method, summary) + values = append(values, fmt.Sprintf("%s: %s", method, summary)) } r := *a