From 013e235628503150d0f04b7eb60f30c376b18f85 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Wed, 27 Mar 2024 15:40:15 +0900 Subject: [PATCH] cmd/ebitenmobile, exp/textinput: typo --- cmd/ebitenmobile/main.go | 2 +- exp/textinput/textinput.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/ebitenmobile/main.go b/cmd/ebitenmobile/main.go index 9701d1938..da6e60418 100644 --- a/cmd/ebitenmobile/main.go +++ b/cmd/ebitenmobile/main.go @@ -95,7 +95,7 @@ func main() { } // minAndroidAPI specifies the minimum API version for Android. - // Now Google Player v23.30.99+ drops the API level that is older than 21. + // Now Google Player v23.30.99+ drops API levels that are older than 21. // See https://apilevels.com/. const minAndroidAPI = 21 diff --git a/exp/textinput/textinput.go b/exp/textinput/textinput.go index 86d566c95..7741d9a8e 100644 --- a/exp/textinput/textinput.go +++ b/exp/textinput/textinput.go @@ -47,7 +47,7 @@ type State struct { // Start starts text inputting. // Start returns a channel to send the state repeatedly, and a function to end the text inputting. // -// Start is the low-leve API. For most use cases, Field is easier to use. +// Start is the low-level API. For most use cases, Field is easier to use. // // Start returns nil and nil if the current environment doesn't support this package. func Start(x, y int) (states chan State, close func()) {