diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2023-08-26 13:04:39 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2023-08-26 13:04:39 -0700 |
commit | d76541dec31aea4f581cf174a2d8b39065430c91 (patch) | |
tree | 36663a92d5f7cfe22793b3cd6d406f59ef6b7733 | |
parent | 8603ca5d398d2ef02983e2c5b4ad3fd0fe0614ba (diff) | |
download | view.love-d76541dec31aea4f581cf174a2d8b39065430c91.tar.gz |
fix method name in documentation
-rw-r--r-- | reference.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reference.md b/reference.md index 8e9e34c..a28146a 100644 --- a/reference.md +++ b/reference.md @@ -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.) |