diff --git a/color.go b/color.go
index d14c6abba712504c17d37d2f3c8c4666fe72f114..6b88577df5f2eb58e8ba2c5132475e41d96a550d 100644
--- a/color.go
+++ b/color.go
@@ -17,7 +17,7 @@ func RGB(r, g, b float64) RGBA {
 	return RGBA{r, g, b, 1}
 }
 
-// Alpha returns a while RGBA color with the given alpha component.
+// Alpha returns a white RGBA color with the given alpha component.
 func Alpha(a float64) RGBA {
 	return RGBA{a, a, a, a}
 }