Fix typo in RemoveAll code comment

This commit is contained in:
Travis Yoder 2016-11-08 17:09:53 -07:00 committed by Bjørn Erik Pedersen
parent 944579a3fc
commit 06b7e5f506
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ type Fs interface {
// happens.
Remove(name string) error
// RemoveAll removes a directory path and all any children it contains. It
// RemoveAll removes a directory path and any children it contains. It
// does not fail if the path does not exist (return nil).
RemoveAll(path string) error