aboutsummaryrefslogtreecommitdiff
path: root/src/errors
diff options
context:
space:
mode:
authorkenshi kamata <kenshi.kamata@gmail.com>2024-05-22 17:19:56 +0900
committerGopher Robot <gobot@golang.org>2024-05-24 17:13:04 +0000
commit85115da5d3351c4300337579eafe726700f3b587 (patch)
treeb1346edc804c46681d8c184ea1bd180883388c95 /src/errors
parent60e69866121dffa686cfbc27aee32cd2f6dc05ca (diff)
downloadgo-85115da5d3351c4300337579eafe726700f3b587.tar.xz
errors: change interface{} to any in comment
Change-Id: Ibf28c4b3026019427a2485230e14929ed80a1727 Reviewed-on: https://go-review.googlesource.com/c/go/+/587255 Reviewed-by: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Carlos Amedee <carlos@golang.org>
Diffstat (limited to 'src/errors')
-rw-r--r--src/errors/wrap.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/errors/wrap.go b/src/errors/wrap.go
index 57060517b5..eec9591dae 100644
--- a/src/errors/wrap.go
+++ b/src/errors/wrap.go
@@ -85,7 +85,7 @@ func is(err, target error, targetComparable bool) bool {
// errors, As examines err followed by a depth-first traversal of its children.
//
// An error matches target if the error's concrete value is assignable to the value
-// pointed to by target, or if the error has a method As(interface{}) bool such that
+// pointed to by target, or if the error has a method As(any) bool such that
// As(target) returns true. In the latter case, the As method is responsible for
// setting target.
//