aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/keymap.c
diff options
context:
space:
mode:
authorerw7 <erw7.github@gmail.com>2020-05-26 17:23:04 +0900
committererw7 <erw7.github@gmail.com>2020-05-26 17:23:04 +0900
commite01fc33515d5cd3a9a595d0e6905bd16d3a861e5 (patch)
treee735d811c3082a94f8ea3f909259a4de80a8c7f4 /src/nvim/keymap.c
parente6e6affc0ee675861f3b1f093ae3e6572cd3b4a0 (diff)
downloadrneovim-e01fc33515d5cd3a9a595d0e6905bd16d3a861e5.tar.gz
rneovim-e01fc33515d5cd3a9a595d0e6905bd16d3a861e5.tar.bz2
rneovim-e01fc33515d5cd3a9a595d0e6905bd16d3a861e5.zip
[squash] fix comment [skip ci]
Diffstat (limited to 'src/nvim/keymap.c')
-rw-r--r--src/nvim/keymap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/keymap.c b/src/nvim/keymap.c
index 4b8b9992f5..a553110552 100644
--- a/src/nvim/keymap.c
+++ b/src/nvim/keymap.c
@@ -517,8 +517,8 @@ char_u *get_special_key_name(int c, int modifiers)
/// @param[in,out] srcp Source from which <> are translated. Is advanced to
/// after the <> name if there is a match.
/// @param[in] src_len Length of the srcp.
-/// @param[out] dst Location where translation result will be kept. Must have
-/// at least six bytes.
+/// @param[out] dst Location where translation result will be kept. It must
+// be at least 19 bytes per "<x>" form.
/// @param[in] keycode Prefer key code, e.g. K_DEL in place of DEL.
/// @param[in] in_string Inside a double quoted string
///