aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Randall <khr@golang.org>2025-06-26 14:36:14 -0700
committerDavid Chase <drchase@google.com>2025-07-01 08:29:57 -0700
commit27ad1f50135c6de20c2afd593cdd17f47c2388e0 (patch)
treee7908e9de5d535256a5ed2a89db11788fedb8f73
parent86fca3dcb63157b8e45e565e821e7fb098fcf368 (diff)
downloadgo-27ad1f50135c6de20c2afd593cdd17f47c2388e0.tar.xz
internal/abi: fix comment on NonEmptyInterface
Change-Id: Ia3f4e844049caf11ae67d1bd6dd48350f51c532f Reviewed-on: https://go-review.googlesource.com/c/go/+/684375 Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Keith Randall <khr@golang.org> Reviewed-by: Keith Randall <khr@google.com>
-rw-r--r--src/internal/abi/iface.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal/abi/iface.go b/src/internal/abi/iface.go
index e1e69367c6..5f3698407d 100644
--- a/src/internal/abi/iface.go
+++ b/src/internal/abi/iface.go
@@ -26,7 +26,7 @@ type EmptyInterface struct {
Data unsafe.Pointer
}
-// EmptyInterface describes the layout of an interface that contains any methods.
+// NonEmptyInterface describes the layout of an interface that contains any methods.
type NonEmptyInterface struct {
ITab *ITab
Data unsafe.Pointer