Skip to content

Commit

Permalink
Fix typo in error message (#629)
Browse files Browse the repository at this point in the history
Fixes typo in s3 upload manager's error message.
  • Loading branch information
cure committed Jul 7, 2020
1 parent aa0a658 commit 36e8204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/s3/s3manager/upload.go
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ type uploader struct {
// multipart upload.
func (u *uploader) upload() (*UploadOutput, error) {
if err := u.init(); err != nil {
return nil, awserr.New("ReadRequestBody", "unable to initillize upload", err)
return nil, awserr.New("ReadRequestBody", "unable to initialize upload", err)
}
defer u.cfg.partPool.Close()

Expand Down

0 comments on commit 36e8204

Please sign in to comment.