From 75a88fd112435f96581d7852acbb8cfe09ecccb7 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sat, 16 Nov 2019 02:04:31 +0900 Subject: [PATCH] Revert "graphics: Fix comments" This reverts commit 7ac1f62c520039131a37b696d4fe326644efd2ad. --- image.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/image.go b/image.go index 505a8700a..f4e3428e9 100644 --- a/image.go +++ b/image.go @@ -432,8 +432,8 @@ func (i *Image) Dispose() error { // // The given p must represent RGBA pre-multiplied alpha values. len(p) must equal to 4 * (image width) * (image height). // -// As of 1.11.0-alpha, ReplacePixels takes the ownership of the given p. This means that p must not be modified -// after ReplacePixels is called. +// ReplacePixels takes the ownership of the given p. This means that p must not be modified after ReplacePixels is +// called. // // ReplacePixels may be slow (as for implementation, this calls glTexSubImage2D). //