aboutsummaryrefslogtreecommitdiff
path: root/src/runtime
diff options
context:
space:
mode:
authorJosh Bleecher Snyder <josharian@gmail.com>2015-03-17 17:01:34 -0700
committerJosh Bleecher Snyder <josharian@gmail.com>2015-03-18 15:14:37 +0000
commit6ffed3020c0fb749868b71d5b13fef65ff248902 (patch)
tree612c345d171941974d299b6ff64d71f5a79f73e5 /src/runtime
parent2adc4e892704bb99f2d16c0c09777987cb6bed35 (diff)
downloadgo-6ffed3020c0fb749868b71d5b13fef65ff248902.tar.xz
runtime: fix minor typo
Change-Id: I79b7ed8f7e78e9d35b5e30ef70b98db64bc68a7b Reviewed-on: https://go-review.googlesource.com/7720 Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/runtime')
-rw-r--r--src/runtime/error.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/error.go b/src/runtime/error.go
index 0b40c702b0..d8af4f156d 100644
--- a/src/runtime/error.go
+++ b/src/runtime/error.go
@@ -11,9 +11,9 @@ type Error interface {
error
// RuntimeError is a no-op function but
- // serves to distinguish types that are runtime
+ // serves to distinguish types that are run time
// errors from ordinary errors: a type is a
- // runtime error if it has a RuntimeError method.
+ // run time error if it has a RuntimeError method.
RuntimeError()
}