Skip to content

Commit

Permalink
Fix multiline comment
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbarfuss committed May 30, 2024
1 parent c41f250 commit c11c84e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions internal/s3/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,10 +241,7 @@ func totalFileSizeEqualToContentRange(obj *s3.GetObjectOutput) bool {
return totalSizeIsEqualToContentRange
}

/*
*
See https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Range
*/
// See https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Range
func getFileSizeAsString(obj *s3.GetObjectOutput) string {
s := strings.Split(*obj.ContentRange, "/")
if len(s) > 1 {
Expand Down

0 comments on commit c11c84e

Please sign in to comment.