]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: fix minor typo
authorJosh Bleecher Snyder <josharian@gmail.com>
Wed, 18 Mar 2015 00:01:34 +0000 (17:01 -0700)
committerJosh Bleecher Snyder <josharian@gmail.com>
Wed, 18 Mar 2015 15:14:37 +0000 (15:14 +0000)
Change-Id: I79b7ed8f7e78e9d35b5e30ef70b98db64bc68a7b
Reviewed-on: https://go-review.googlesource.com/7720
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/runtime/error.go

index 0b40c702b029aeb0fc27e8306eb8fc0d4eb35252..d8af4f156d60a0dce2142f3ded76a3b5fc88bd9d 100644 (file)
@@ -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()
 }