about summary refs log tree commit diff stats
path: root/reference.md
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2023-08-26 13:04:39 -0700
committerKartik K. Agaram <vc@akkartik.com>2023-08-26 13:04:39 -0700
commitd76541dec31aea4f581cf174a2d8b39065430c91 (patch)
tree36663a92d5f7cfe22793b3cd6d406f59ef6b7733 /reference.md
parent8603ca5d398d2ef02983e2c5b4ad3fd0fe0614ba (diff)
downloadtext.love-d76541dec31aea4f581cf174a2d8b39065430c91.tar.gz
fix method name in documentation
Diffstat (limited to 'reference.md')
-rw-r--r--reference.md2
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.)