1
0
mirror of https://github.com/minio/mc.git synced 2025-07-28 20:01:58 +03:00

Adds missing codebase MinIO and min.io changes (#2745)

This commit is contained in:
ebozduman
2019-04-16 22:31:54 -07:00
committed by kannappanr
parent 68a9eeae18
commit 83a9d8b91d
173 changed files with 392 additions and 392 deletions

View File

@ -1,5 +1,5 @@
/*
* Minio Client (C) 2014, 2015, 2018 Minio, Inc.
* MinIO Client (C) 2014, 2015, 2018 MinIO, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -62,7 +62,7 @@ var errInvalidAlias = func(alias string) *probe.Error {
type invalidURLErr error
var errInvalidURL = func(URL string) *probe.Error {
msg := "URL `" + URL + "` for minio client should be of the form scheme://host[:port]/ without resource component."
msg := "URL `" + URL + "` for MinIO Client should be of the form scheme://host[:port]/ without resource component."
return probe.NewError(invalidURLErr(errors.New(msg)))
}