mirror of https://github.com/golang/go.git
fmt: document nil receiver handling for GoStringer
Fixes #70305 Change-Id: I8ae4e6dae3327a54039d470c8c8545e2cc6de98f Reviewed-on: https://go-review.googlesource.com/c/go/+/627495 Reviewed-by: Rob Pike <r@golang.org> Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
This commit is contained in:
parent
6a2fb15475
commit
eea5e13de4
|
|
@ -280,8 +280,8 @@ like
|
|||
%!s(PANIC=bad)
|
||||
|
||||
The %!s just shows the print verb in use when the failure
|
||||
occurred. If the panic is caused by a nil receiver to an Error
|
||||
or String method, however, the output is the undecorated
|
||||
occurred. If the panic is caused by a nil receiver to an Error,
|
||||
String, or GoString method, however, the output is the undecorated
|
||||
string, "<nil>".
|
||||
|
||||
# Scanning
|
||||
|
|
|
|||
Loading…
Reference in New Issue