Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vips/image.go
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ type PngExportParams struct {
Palette bool
Dither float64
Bitdepth int
Profile string // TODO: Use this param during save
Profile string
}

// NewPngExportParams creates default values for an export of a PNG image.
Expand Down
2 changes: 1 addition & 1 deletion vips/math.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ func ValueOf(value float64) Scalar {
return Scalar{value, false}
}

// IsZero checkes whether the associated Scalar's value is zero.
// IsZero checks whether the associated Scalar's value is zero.
func (s *Scalar) IsZero() bool {
return s.Value == 0 && !s.Relative
}
Expand Down
Loading