mirror of https://github.com/golang/go.git
log/slog: fix broken link to Record.Clone in package docs
Change-Id: If8b937fa9db89a537ad7d4ccb8c04f84d2cff3db
GitHub-Last-Rev: fdd4338118
GitHub-Pull-Request: golang/go#60938
Reviewed-on: https://go-review.googlesource.com/c/go/+/505075
TryBot-Bypass: Jonathan Amsterdam <jba@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Jonathan Amsterdam <jba@google.com>
This commit is contained in:
parent
25e46693a1
commit
82e17c4d11
|
|
@ -255,7 +255,7 @@ and hidden fields that refer to state (such as attributes) indirectly. This
|
||||||
means that modifying a simple copy of a Record (e.g. by calling
|
means that modifying a simple copy of a Record (e.g. by calling
|
||||||
[Record.Add] or [Record.AddAttrs] to add attributes)
|
[Record.Add] or [Record.AddAttrs] to add attributes)
|
||||||
may have unexpected effects on the original.
|
may have unexpected effects on the original.
|
||||||
Before modifying a Record, use [Clone] to
|
Before modifying a Record, use [Record.Clone] to
|
||||||
create a copy that shares no state with the original,
|
create a copy that shares no state with the original,
|
||||||
or create a new Record with [NewRecord]
|
or create a new Record with [NewRecord]
|
||||||
and build up its Attrs by traversing the old ones with [Record.Attrs].
|
and build up its Attrs by traversing the old ones with [Record.Attrs].
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue