1
0
mirror of https://github.com/minio/mc.git synced 2025-11-14 23:42:27 +03:00

User folder instead of directories in documentation

This commit is contained in:
Harshavardhana
2015-04-28 12:13:39 -07:00
parent 23cee677b7
commit 8ffd8d0f26
11 changed files with 44 additions and 43 deletions

View File

@@ -114,10 +114,10 @@ func (e errInvalidSource) Error() string {
return "Invalid source " + e.path
}
type errIsNotDIR struct {
type errIsNotFolder struct {
path string
}
func (e errIsNotDIR) Error() string {
return "Not a directory " + e.path
func (e errIsNotFolder) Error() string {
return "Not a folder " + e.path
}