1
0
mirror of https://github.com/golang/go synced 2024-11-26 18:06:55 -07:00

log/slog: fix broken link to AnyValue in comment

Change-Id: Ida52a2bf6a415017942bf9ccd74a1ea9ed02bc46
Reviewed-on: https://go-review.googlesource.com/c/go/+/505535
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Auto-Submit: Cuong Manh Le <cuong.manhle.vn@gmail.com>
Reviewed-by: Jonathan Amsterdam <jba@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com>
This commit is contained in:
Cuong Manh Le 2023-06-23 18:52:31 +07:00 committed by Jonathan Amsterdam
parent 82e17c4d11
commit 164aceea08

View File

@ -81,7 +81,7 @@ func argsToAttrSlice(args []any) []Attr {
}
// Any returns an Attr for the supplied value.
// See [Value.AnyValue] for how values are treated.
// See [AnyValue] for how values are treated.
func Any(key string, value any) Attr {
return Attr{key, AnyValue(value)}
}