From ce5b30cb3131f4f20c16155e13643af6150d6927 Mon Sep 17 00:00:00 2001 From: Wu Xiaoyun Date: Thu, 11 Jan 2024 17:17:00 +0800 Subject: [PATCH] typo: fix typo in documentation --- s3/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s3/README.md b/s3/README.md index 21a7280e..7fa708f0 100644 --- a/s3/README.md +++ b/s3/README.md @@ -33,7 +33,7 @@ func (s *Storage) Close() error func (s *Storage) Conn() *s3.Client // Additional useful methods. -func (s *Storage) CreateBucker(bucket string) error +func (s *Storage) CreateBucket(bucket string) error func (s *Storage) DeleteBucket(bucket string) error func (s *Storage) SetWithChecksum(key string, val []byte, checksum map[types.ChecksumAlgorithm][]byte) error ```