remove stale variable from docs

This commit is contained in:
Kartik K. Agaram 2023-10-27 23:57:18 -07:00
parent 523db004d9
commit 5d41640d2f
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ Lua is dynamically typed. Tests can't patch over lack of type-checking.
For example, `string.sub` should never use a `_pos`, only an `_offset`.
* Some ADT/interface support would be helpful in keeping per-line state in
sync. Any change to line data should clear line `fragments` and
sync. Any change to line data should clear the derived line property
`screen_line_starting_pos`.
* Some inputs get processed in love.textinput and some in love.keypressed.