diff options
Diffstat (limited to 'conv/evalargs.go')
| -rw-r--r-- | conv/evalargs.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conv/evalargs.go b/conv/evalargs.go index f7df2ec1..306de54f 100644 --- a/conv/evalargs.go +++ b/conv/evalargs.go @@ -13,7 +13,7 @@ var ( // printableValue returns the, possibly indirected, interface value inside v that // is best for a call to formatted printer. -func printableValue(v reflect.Value) (interface{}, bool) { +func printableValue(v reflect.Value) (any, bool) { if v.Kind() == reflect.Ptr { v, _ = indirect(v) // fmt.Fprint handles nil. } |
