diff options
| author | Sean Liao <sean@liao.dev> | 2024-11-13 15:04:37 +0000 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2024-11-16 08:20:53 +0000 |
| commit | eea5e13de4b57e7307a20192c8a27565f136484f (patch) | |
| tree | 98d6f8ddebbf3513dd75d1b58e8b3e4639ea9117 /src/fmt | |
| parent | 6a2fb15475b2868815bc9b76518795839793af95 (diff) | |
| download | go-eea5e13de4b57e7307a20192c8a27565f136484f.tar.xz | |
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>
Diffstat (limited to 'src/fmt')
| -rw-r--r-- | src/fmt/doc.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fmt/doc.go b/src/fmt/doc.go index d8ff646543..b90db7bedc 100644 --- a/src/fmt/doc.go +++ b/src/fmt/doc.go @@ -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 |
