From ea2ed1bcd5a0db0bfa17f40ab50c29948a6c5698 Mon Sep 17 00:00:00 2001
From: faiface <faiface@ksp.sk>
Date: Thu, 24 Nov 2016 16:06:33 +0100
Subject: [PATCH] doc fix

---
 util.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util.go b/util.go
index 90d996d..6c3211c 100644
--- a/util.go
+++ b/util.go
@@ -2,7 +2,7 @@ package pixel
 
 import "image/color"
 
-// colorToRGBA converts a color from image/color to RGBA components in interval [0, 1)
+// colorToRGBA converts a color from image/color to RGBA components in interval [0, 1].
 func colorToRGBA(c color.Color) (r, g, b, a float64) {
 	ri, gi, bi, ai := c.RGBA()
 	r = float64(ri) / 0xffff
-- 
GitLab