diff options
Diffstat (limited to 'libgo/go/os/path.go')
-rw-r--r-- | libgo/go/os/path.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/os/path.go b/libgo/go/os/path.go index 84a3be3..146d7b6 100644 --- a/libgo/go/os/path.go +++ b/libgo/go/os/path.go @@ -61,7 +61,7 @@ func MkdirAll(path string, perm FileMode) error { // RemoveAll removes path and any children it contains. // It removes everything it can but returns the first error -// it encounters. If the path does not exist, RemoveAll +// it encounters. If the path does not exist, RemoveAll // returns nil (no error). func RemoveAll(path string) error { // Simple case: if Remove works, we're done. |