From c8cc98e3079c5ead121804e281548d9bfabb8d25 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Thu, 11 Apr 2019 14:12:22 -0700 Subject: [PATCH] graphics: Fix documents about At --- image.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/image.go b/image.go index 861a41e2a..e2d526605 100644 --- a/image.go +++ b/image.go @@ -547,8 +547,8 @@ func (i *Image) ColorModel() color.Model { // // At always returns a transparent color if the image is disposed. // -// Note that important logic should not rely on At result since -// At might include a very slight error on some machines. +// Note that important logic should not rely on values returned by At, since +// the returned values can include very slight differences between some machines. // // At can't be called outside the main loop (ebiten.Run's updating function) starts (as of version 1.4.0-alpha). func (i *Image) At(x, y int) color.Color {