aboutsummaryrefslogtreecommitdiff
path: root/src/reflect/abi.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/reflect/abi.go')
-rw-r--r--src/reflect/abi.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/reflect/abi.go b/src/reflect/abi.go
index 20f41d96b5..36d6b3095b 100644
--- a/src/reflect/abi.go
+++ b/src/reflect/abi.go
@@ -378,7 +378,7 @@ func newAbiDesc(t *funcType, rcvr *rtype) abiDesc {
// Stack-assigned return values do not share
// space with arguments like they do with registers,
// so we need to inject a stack offset here.
- // Fake it by artifically extending stackBytes by
+ // Fake it by artificially extending stackBytes by
// the return offset.
out.stackBytes = retOffset
for i, res := range t.out() {