diff --git a/color.go b/color.go
index 6b88577df5f2eb58e8ba2c5132475e41d96a550d..918cd5a0b9f9f1333744dd45fba77c260254cc88 100644
--- a/color.go
+++ b/color.go
@@ -75,7 +75,7 @@ func (c RGBA) RGBA() (r, g, b, a uint32) {
 }
 
 // ToRGBA converts a color to RGBA format. Using this function is preferred to using RGBAModel, for
-// performance (using RGBAModel introduced additional unnecessary allocations).
+// performance (using RGBAModel introduces additional unnecessary allocations).
 func ToRGBA(c color.Color) RGBA {
 	if c, ok := c.(RGBA); ok {
 		return c