cmd/ebitenmobile, exp/textinput: typo

This commit is contained in:
Hajime Hoshi 2024-03-27 15:40:15 +09:00
parent 59521d715b
commit 013e235628
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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()) {