From 28642953dd1ff69c9cf209f74b3e4dbf4da64410 Mon Sep 17 00:00:00 2001 From: Achille Roussel Date: Wed, 31 May 2023 16:33:51 -0700 Subject: [PATCH] fix 'describe profile' output alignment Signed-off-by: Achille Roussel --- describe.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/describe.go b/describe.go index 499e853b..8873bc62 100644 --- a/describe.go +++ b/describe.go @@ -568,7 +568,7 @@ func (desc *profileDescriptor) Format(w fmt.State, _ rune) { if i != 0 { fmt.Fprintf(tw, "\n") } - fmt.Fprintf(w, "- %s\t%s", sampleType.Type, sampleType.Unit) + fmt.Fprintf(tw, "- %s\t%s", sampleType.Type, sampleType.Unit) if sampleType.Type == desc.profile.DefaultSampleType { hasDefault = true fmt.Fprintf(tw, " (default)")