]> Cypherpunks repositories - gostls13.git/commitdiff
internal/abi: fix comment on NonEmptyInterface
authorKeith Randall <khr@golang.org>
Thu, 26 Jun 2025 21:36:14 +0000 (14:36 -0700)
committerDavid Chase <drchase@google.com>
Tue, 1 Jul 2025 15:29:57 +0000 (08:29 -0700)
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>
src/internal/abi/iface.go

index e1e69367c6ae39c09ad4952d5c535b1be5330952..5f3698407d1c1e0f3f5770d8e8652d1d811ba8be 100644 (file)
@@ -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