1
0
mirror of https://github.com/minio/minio.git synced 2025-04-01 10:13:42 -04:00

Fix missing whitespace in error message for IncompleteBody ()

This commit is contained in:
haslersn 2022-07-05 21:19:57 +02:00 committed by GitHub
parent 2471bdda00
commit df42914da6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -541,7 +541,7 @@ type IncompleteBody GenericError
// Error returns string an error formatted as the given text. // Error returns string an error formatted as the given text.
func (e IncompleteBody) Error() string { func (e IncompleteBody) Error() string {
return e.Bucket + "/" + e.Object + "has incomplete body" return e.Bucket + "/" + e.Object + " has incomplete body"
} }
// InvalidRange - invalid range typed error. // InvalidRange - invalid range typed error.