aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/iface.go
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2016-12-08 22:15:40 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2016-12-08 23:22:37 +0000
commit4c4201f0e2c1faf1d1480ac72737acadedb37e6e (patch)
treeecc5820902484c18c3a5fddd56b17cd26f0a1640 /src/runtime/iface.go
parent51a75a01f89ee7c85e2fef6b71d7245de49a3483 (diff)
downloadgo-4c4201f0e2c1faf1d1480ac72737acadedb37e6e.tar.gz
go-4c4201f0e2c1faf1d1480ac72737acadedb37e6e.zip
all: make spelling consistent
Fixes #17938 Change-Id: Iad12155f4976846bd4a9a53869f89e40e5b3deb3 Reviewed-on: https://go-review.googlesource.com/34147 Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Joe Tsai <thebrokentoaster@gmail.com>
Diffstat (limited to 'src/runtime/iface.go')
-rw-r--r--src/runtime/iface.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/iface.go b/src/runtime/iface.go
index c932e149dd..18f5c588b4 100644
--- a/src/runtime/iface.go
+++ b/src/runtime/iface.go
@@ -179,7 +179,7 @@ func panicnildottype(want *_type) {
// The conv and assert functions below do very similar things.
// The convXXX functions are guaranteed by the compiler to succeed.
-// The assertXXX functions may fail (either panicing or returning false,
+// The assertXXX functions may fail (either panicking or returning false,
// depending on whether they are 1-result or 2-result).
// The convXXX functions succeed on a nil input, whereas the assertXXX
// functions fail on a nil input.