Skip to content

Commit

Permalink
style(images): rephrase error message
Browse files Browse the repository at this point in the history
  • Loading branch information
danvergara committed Dec 27, 2023
1 parent 1ba8e10 commit e5fa79a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/files/images/images.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ func convertToImage(target string, img image.Image) ([]byte, error) {
return nil, err
}
default:
return nil, fmt.Errorf("file format to conver to %s not supported", target)
return nil, fmt.Errorf("file format to convert to not supported: %s", target)
}

return result, nil
Expand Down

0 comments on commit e5fa79a

Please sign in to comment.