From: Anthony Martin Date: Fri, 17 Feb 2012 20:44:38 +0000 (+1100) Subject: os: fix existential typo X-Git-Tag: weekly.2012-02-22~143 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=566e0fe785b38cbcef588d3439ada87235737898;p=gostls13.git os: fix existential typo R=golang-dev, r, gri CC=golang-dev https://golang.org/cl/5675081 --- diff --git a/src/pkg/os/error.go b/src/pkg/os/error.go index 5baeba475b..e0b83b5c22 100644 --- a/src/pkg/os/error.go +++ b/src/pkg/os/error.go @@ -13,7 +13,7 @@ var ( ErrInvalid = errors.New("invalid argument") ErrPermission = errors.New("permission denied") ErrExist = errors.New("file already exists") - ErrNotExist = errors.New("file does not exit") + ErrNotExist = errors.New("file does not exist") ) // PathError records an error and the operation and file path that caused it.