diff options
-rw-r--r-- | src/lib/os/os_error.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/os/os_error.go b/src/lib/os/os_error.go index c8d52dc4e..d12a5c118 100644 --- a/src/lib/os/os_error.go +++ b/src/lib/os/os_error.go @@ -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 |