Skip to content

Commit 36e8204

Browse files
authored
Fix typo in error message (#629)
Fixes typo in s3 upload manager's error message.
1 parent aa0a658 commit 36e8204

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

service/s3/s3manager/upload.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ type uploader struct {
356356
// multipart upload.
357357
func (u *uploader) upload() (*UploadOutput, error) {
358358
if err := u.init(); err != nil {
359-
return nil, awserr.New("ReadRequestBody", "unable to initillize upload", err)
359+
return nil, awserr.New("ReadRequestBody", "unable to initialize upload", err)
360360
}
361361
defer u.cfg.partPool.Close()
362362

0 commit comments

Comments
 (0)