add inserting comma inside value instruction to flag description (#5666)

This commit is contained in:
Hui Wang 2024-01-27 05:46:49 +08:00 committed by GitHub
parent aaa526e8ff
commit 6ee1bfeb3c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11,6 +11,7 @@ import (
// NewArrayString returns new ArrayString with the given name and description.
func NewArrayString(name, description string) *ArrayString {
description += "\nSupports an `array` of values separated by comma or specified via multiple flags."
description += "\nValue can contain comma inside single-quoted or double-quoted string, {}, [] and () braces."
var a ArrayString
flag.Var(&a, name, description)
return &a