From ef7966b62559604c88bd8ff3a98b997e71c3d83f Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sun, 21 Aug 2022 21:58:10 +0900 Subject: [PATCH] ebiten: typo --- image.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/image.go b/image.go index a825c07b6..1adbf7f3f 100644 --- a/image.go +++ b/image.go @@ -976,7 +976,7 @@ type NewImageOptions struct { // // An unmanged image is never on an internal automatic texture atlas. // A regular image is a part of an internal texture atlas, and locating them is done automatically in Ebitengine. - // NewUnmanagedImage is useful when you want finer controls over the image for performance and memory reasons. + // Unmanaged is useful when you want finer controls over the image for performance and memory reasons. Unmanaged bool } @@ -1046,7 +1046,7 @@ type NewImageFromImageOptions struct { // // An unmanged image is never on an internal automatic texture atlas. // A regular image is a part of an internal texture atlas, and locating them is done automatically in Ebitengine. - // NewUnmanagedImage is useful when you want finer controls over the image for performance and memory reasons. + // Unmanaged is useful when you want finer controls over the image for performance and memory reasons. Unmanaged bool // PreserveBounds represents whether the new image's bounds are the same as the given image.