aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/input.c
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2024-02-06 12:30:02 +0100
committerGitHub <noreply@github.com>2024-02-06 19:30:02 +0800
commit63b810c9d8543bfcbee0367554e97cb97d1c14e6 (patch)
tree9cc25c042a40422ba133384c1b55dad5201cf253 /src/nvim/input.c
parent9a761019da05fbdb546f6e81e294612be217ca12 (diff)
downloadrneovim-63b810c9d8543bfcbee0367554e97cb97d1c14e6.tar.gz
rneovim-63b810c9d8543bfcbee0367554e97cb97d1c14e6.tar.bz2
rneovim-63b810c9d8543bfcbee0367554e97cb97d1c14e6.zip
docs: small fixes (#27213)
Co-authored-by: Matthieu Coudron <886074+teto@users.noreply.github.com>
Diffstat (limited to 'src/nvim/input.c')
-rw-r--r--src/nvim/input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/input.c b/src/nvim/input.c
index 7e6b6d4bd0..7667c49452 100644
--- a/src/nvim/input.c
+++ b/src/nvim/input.c
@@ -35,7 +35,7 @@
/// @param[in] str Prompt: question to ask user. Is always followed by
/// " (y/n)?".
/// @param[in] direct Determines what function to use to get user input. If
-/// true then ui_inchar() will be used, otherwise vgetc().
+/// true then os_inchar() will be used, otherwise vgetc().
/// I.e. when direct is true then characters are obtained
/// directly from the user without buffers involved.
///