Skip to content
This repository has been archived by the owner on Sep 6, 2022. It is now read-only.

fix typos in info and error messages #52

Merged
merged 1 commit into from
Sep 15, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker-plugin/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ func (d *minfsDriver) Create(r volume.Request) volume.Response {
"endpoint": config.endpoint,
"bucket": config.bucket,
"opts": config.opts,
}).Info("Bucket already exisits.")
}).Info("Bucket already exists.")
}

// mountpoint is the local path where the remote bucket is mounted.
Expand Down Expand Up @@ -500,7 +500,7 @@ func (d *minfsDriver) unmountVolume(target string) error {
func main() {
// --mountroot flag defines the root folder where are the volumes are mounted.
// If the option is not specified '/mnt' is taken as default mount root.
mountRoot := flag.String("mountroot", "/mnt", "root for mouting Minio buckets.")
mountRoot := flag.String("mountroot", "/mnt", "root for mounting Minio buckets.")
flag.Parse()

// check if the mount root exists.
Expand Down