diff options
Diffstat (limited to 'libgo/go/os/error.go')
-rw-r--r-- | libgo/go/os/error.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/os/error.go b/libgo/go/os/error.go index b88e494..a7977ff 100644 --- a/libgo/go/os/error.go +++ b/libgo/go/os/error.go @@ -43,7 +43,7 @@ func NewSyscallError(syscall string, err error) error { return &SyscallError{syscall, err} } -// IsExist returns whether the error is known to report that a file or directory +// IsExist returns whether the error is known to report that a file or directory // already exists. It is satisfied by ErrExist as well as some syscall errors. func IsExist(err error) bool { return isExist(err) |