fix method name in documentation

This commit is contained in:
Kartik K. Agaram 2023-08-26 13:04:39 -07:00
parent 8603ca5d39
commit d76541dec3
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ automatically called for you as appropriate.
together will call `on.textinput` with `A`.
(Based on [LÖVE](https://love2d.org/wiki/love.textinput).)
* `App.keyrelease(key)` -- called when you press a key on the keyboard.
* `App.keyreleased(key)` -- called when you press a key on the keyboard.
Provides in `key` a string name for the key ([valid values](https://love2d.org/wiki/KeyConstant)).
(Based on [LÖVE](https://love2d.org/wiki/love.keyreleased), including other
variants.)