Commit 566e0fe7 authored by Anthony Martin's avatar Anthony Martin Committed by Rob Pike

os: fix existential typo

R=golang-dev, r, gri
CC=golang-dev
https://golang.org/cl/5675081
parent b6e2d6b7
......@@ -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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment