Skip to content

Commit

Permalink
fix typo in amazon_s3.go
Browse files Browse the repository at this point in the history
  • Loading branch information
lbeckman314 authored Oct 11, 2024
1 parent a520047 commit ac0b7cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/amazon_s3.go
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ func (s3b *AmazonS3) Put(ctx context.Context, url, path string) (*Object, error)
} else {
hf, err = os.Open(path)
if err != nil {
return nil, fmt.Errorf("amazonS3: opening fil %v: %v", path, err)
return nil, fmt.Errorf("amazonS3: opening file %v: %v", path, err)
}
}
defer hf.Close()
Expand Down

0 comments on commit ac0b7cd

Please sign in to comment.