Skip to content

Commit d9552c8

Browse files
committed
fix: adjust docs to reflect changes
1 parent ff22a37 commit d9552c8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

godoc-current.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -981,7 +981,7 @@ type TextFlag = FlagBase[TextMarshalUnmarshaler, StringConfig, TextValue]
981981
TextFlag enables you to set types that satisfies TextMarshalUnmarshaler
982982
using flags such as log levels.
983983

984-
type TextMarshalUnMarshaller interface {
984+
type TextMarshalUnMarshaler interface {
985985
encoding.TextMarshaler
986986
encoding.TextUnmarshaler
987987
}
@@ -991,15 +991,15 @@ type TextValue struct {
991991
Config StringConfig
992992
}
993993

994-
func (v TextValue) Create(t TextMarshalUnmarshaler, p *TextMarshalUnmarshaler, c StringConfig) Value
994+
func (f TextValue) Create(t TextMarshalUnmarshaler, p *TextMarshalUnmarshaler, c StringConfig) Value
995995

996-
func (v TextValue) Get() any
996+
func (f TextValue) Get() any
997997

998-
func (v TextValue) Set(s string) error
998+
func (f TextValue) Set(s string) error
999999

1000-
func (v TextValue) String() string
1000+
func (f TextValue) String() string
10011001

1002-
func (v TextValue) ToString(t TextMarshalUnmarshaler) string
1002+
func (f TextValue) ToString(t TextMarshalUnmarshaler) string
10031003

10041004
type TimestampArg = ArgumentBase[time.Time, TimestampConfig, timestampValue]
10051005

0 commit comments

Comments
 (0)