aboutsummaryrefslogtreecommitdiff
path: root/modules/TUI/module.jai
diff options
context:
space:
mode:
authordam <dam@gudinoff>2024-03-24 01:38:35 +0000
committerdam <dam@gudinoff>2024-03-24 01:38:35 +0000
commit95646a4d1e62fe70461d2ad6adc878442ea464d1 (patch)
treeb750d19b8ac51b26b9d573fcd4e74d91b1b219e1 /modules/TUI/module.jai
parentb5b70e2977e2ef6510e2b4e3d117cde25cac7c27 (diff)
downloadtask-time-tracker-95646a4d1e62fe70461d2ad6adc878442ea464d1.tar.zst
task-time-tracker-95646a4d1e62fe70461d2ad6adc878442ea464d1.zip
Fixed typo on comment.
Diffstat (limited to 'modules/TUI/module.jai')
-rw-r--r--modules/TUI/module.jai2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/TUI/module.jai b/modules/TUI/module.jai
index 9ef0a7e..5993676 100644
--- a/modules/TUI/module.jai
+++ b/modules/TUI/module.jai
@@ -473,7 +473,7 @@ read_input_line :: (count_limit: int, is_visible: bool = true) -> string, Key {
/*
Use the get_key to read user input and show it on screen... should allow to move the cursor left and right and to delete/backspace.
Enter should end the input, returning the input string and the Enter key.
- Escape should discard the input returning an empty string and a None key.
+ Escape should discard the input returning an empty string and a Escape key.
Resize should discard the input returning an empty string and a Resize key.
*/
// result := ifx key == Keys.Enter then builder_to_string(*builder) else "";