From a347b618e03c30bb24c29f92ff7487b1c25c4371 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sun, 18 Sep 2022 18:24:53 +0900 Subject: [PATCH] .github/workflows/vettools: typo --- .github/workflows/vettools/imageimportcheck.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/vettools/imageimportcheck.go b/.github/workflows/vettools/imageimportcheck.go index a44fbc0fa..cc8398e65 100644 --- a/.github/workflows/vettools/imageimportcheck.go +++ b/.github/workflows/vettools/imageimportcheck.go @@ -26,7 +26,7 @@ import ( // imageImportCheckAnalyzer is an analyzer to check whether unexpected `image/*` packages are imported. // Importing `image/gif`, `image/jpeg`, and `image/png` registers their recorders at `init` functions, so -// have affect the result of `image.Decode`. Ebitengine should not have such side-effects. +// it affects the result of `image.Decode`. Ebitengine should not have such side-effects. var imageImportCheckAnalyzer = &analysis.Analyzer{ Name: "imageimportcheck", Doc: "check importing image/gif, image/jpeg, and image/png packages",