os: fix existential typo

R=golang-dev, r, gri
CC=golang-dev
https://golang.org/cl/5675081
This commit is contained in:
Anthony Martin 2012-02-18 07:44:38 +11:00 committed by Rob Pike
parent b6e2d6b778
commit 566e0fe785

View File

@ -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.