From 4a0b7328eccfcd4aa6a36dd32a8c4fd312fbb2ac Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Wed, 11 Nov 2020 20:20:35 +0100 Subject: [PATCH] s3: Remove dots for config description --- internal/backend/s3/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/backend/s3/config.go b/internal/backend/s3/config.go index a0aa95609..77b712fc7 100644 --- a/internal/backend/s3/config.go +++ b/internal/backend/s3/config.go @@ -23,8 +23,8 @@ type Config struct { Connections uint `option:"connections" help:"set a limit for the number of concurrent connections (default: 5)"` MaxRetries uint `option:"retries" help:"set the number of retries attempted"` Region string `option:"region" help:"set region"` - BucketLookup string `option:"bucket-lookup" help:"bucket lookup style: 'auto', 'dns', or 'path'."` - ListObjectsV1 bool `option:"list-objects-v1" help:"use deprecated V1 api for ListObjects calls."` + BucketLookup string `option:"bucket-lookup" help:"bucket lookup style: 'auto', 'dns', or 'path'"` + ListObjectsV1 bool `option:"list-objects-v1" help:"use deprecated V1 api for ListObjects calls"` } // NewConfig returns a new Config with the default values filled in.