From 999a126a3ffd52cb93b4d47a231d443ce011b054 Mon Sep 17 00:00:00 2001 From: chrislu Date: Tue, 7 Feb 2023 14:59:47 -0800 Subject: [PATCH] typo --- weed/s3api/s3bucket/s3api_bucket.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/s3api/s3bucket/s3api_bucket.go b/weed/s3api/s3bucket/s3api_bucket.go index b14e8ed71..5f1f3e05b 100644 --- a/weed/s3api/s3bucket/s3api_bucket.go +++ b/weed/s3api/s3bucket/s3api_bucket.go @@ -19,7 +19,7 @@ func VerifyS3BucketName(name string) (err error) { if idx > 0 && (ch == '.' && name[idx-1] == '.') { return fmt.Errorf("bucket names must not contain two adjacent periods") } - //TODO buckets with s3 transfer accleration cannot have . in name + //TODO buckets with s3 transfer acceleration cannot have . in name } if name[0] == '.' || name[0] == '-' { return fmt.Errorf("name must start with number or lower case character")