From f1ad3a69dda12a9104918d240a560fefed6f8703 Mon Sep 17 00:00:00 2001 From: Inhere Date: Fri, 19 Jul 2024 09:58:00 +0800 Subject: [PATCH] :bug: fix: cflag - not add NewLine on each option description --- cflag/cflag.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cflag/cflag.go b/cflag/cflag.go index b2288fd73..24ea00e8d 100644 --- a/cflag/cflag.go +++ b/cflag/cflag.go @@ -510,6 +510,7 @@ func (c *CFlags) renderOptionsHelp(buf *strutil.Buffer) { } } + b.WriteByte('\n') buf.WriteStr1(b.String()) }) }