]> Cypherpunks repositories - gostls13.git/commitdiff
typo
authorRuss Cox <rsc@golang.org>
Fri, 9 Jan 2009 19:17:13 +0000 (11:17 -0800)
committerRuss Cox <rsc@golang.org>
Fri, 9 Jan 2009 19:17:13 +0000 (11:17 -0800)
R=r
DELTA=1  (0 added, 0 deleted, 1 changed)
OCL=22411
CL=22411

src/lib/os/os_error.go

index c8d52dc4eee271c6272f16031f035937ef0d23dd..d12a5c11848eae425436d78c10280dd17417b61d 100644 (file)
@@ -24,7 +24,7 @@ var ErrorStringTab = make(map[string] *Error);
 // These functions contain a race if two goroutines add identical
 // errors simultaneously but the consequences are unimportant.
 
-// Allocate an Error objecct, but if it's been seen before, share that one.
+// Allocate an Error object, but if it's been seen before, share that one.
 export func NewError(s string) *Error {
        if s == "" {
                return nil