summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2023-05-12 14:39:42 -0700
committerGopher Robot <gobot@golang.org>2023-05-17 13:57:49 +0000
commit54031132c87931d7a5844a1ce05e637b03703c38 (patch)
tree23bac646616f3908af84379cb2e2deaaf5d979e4
parenta094a82452ea4f1242ec9f3b1c0f9f230c2b2a6d (diff)
downloadgo-git-54031132c87931d7a5844a1ce05e637b03703c38.tar.gz
internal/abi: update type name in comment
method -> Method For #59670 Change-Id: I78e0410f3d5094aa12b2f3ccd6735fec0d696190 Reviewed-on: https://go-review.googlesource.com/c/go/+/494795 Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: David Chase <drchase@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@google.com>
-rw-r--r--src/internal/abi/type.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal/abi/type.go b/src/internal/abi/type.go
index 5adc2b8713..ce950c3937 100644
--- a/src/internal/abi/type.go
+++ b/src/internal/abi/type.go
@@ -198,7 +198,7 @@ type UncommonType struct {
PkgPath NameOff // import path; empty for built-in types like int, string
Mcount uint16 // number of methods
Xcount uint16 // number of exported methods
- Moff uint32 // offset from this uncommontype to [mcount]method
+ Moff uint32 // offset from this uncommontype to [mcount]Method
_ uint32 // unused
}