From 7195ac7f14159295bbf1e2e61fbe2e92b9548502 Mon Sep 17 00:00:00 2001 From: Frank Wessels Date: Fri, 27 Oct 2017 15:07:14 -0700 Subject: [PATCH] Add space to error message (#5108) --- cmd/object-api-errors.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/object-api-errors.go b/cmd/object-api-errors.go index 847b0366e..40466efb8 100644 --- a/cmd/object-api-errors.go +++ b/cmd/object-api-errors.go @@ -337,7 +337,7 @@ type PartTooSmall struct { } func (e PartTooSmall) Error() string { - return fmt.Sprintf("Part size for %d should be atleast 5MB", e.PartNumber) + return fmt.Sprintf("Part size for %d should be at least 5MB", e.PartNumber) } // PartTooBig returned if size of part is bigger than the allowed limit.