Skip to content

Commit

Permalink
fix: adjust docs to reflect changes
Browse files Browse the repository at this point in the history
  • Loading branch information
somebadcode committed Feb 12, 2025
1 parent ff22a37 commit 35656a1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions godoc-current.txt
Original file line number Diff line number Diff line change
Expand Up @@ -981,7 +981,7 @@ type TextFlag = FlagBase[TextMarshalUnmarshaler, StringConfig, TextValue]
TextFlag enables you to set types that satisfies TextMarshalUnmarshaler
using flags such as log levels.

type TextMarshalUnMarshaller interface {
type TextMarshalUnmarshaler interface {
encoding.TextMarshaler
encoding.TextUnmarshaler
}
Expand All @@ -991,15 +991,15 @@ type TextValue struct {
Config StringConfig
}

func (v TextValue) Create(t TextMarshalUnmarshaler, p *TextMarshalUnmarshaler, c StringConfig) Value
func (f TextValue) Create(v TextMarshalUnmarshaler, p *TextMarshalUnmarshaler, c StringConfig) Value

func (v TextValue) Get() any
func (f TextValue) Get() any

func (v TextValue) Set(s string) error
func (f TextValue) Set(s string) error

func (v TextValue) String() string
func (f TextValue) String() string

func (v TextValue) ToString(t TextMarshalUnmarshaler) string
func (f TextValue) ToString(v TextMarshalUnmarshaler) string

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

Expand Down

0 comments on commit 35656a1

Please # to comment.