aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZyX <kp-pav@yandex.ru>2017-12-11 11:09:09 +0300
committerZyX <kp-pav@yandex.ru>2017-12-11 11:09:09 +0300
commit9f534422e6c3649ee40904ae3606455d26b48188 (patch)
treedae50c26c71f409879463614bcd93e13a57371e6
parent1a961b57505f57130012fe4fcfda0e8009c8da45 (diff)
downloadrneovim-9f534422e6c3649ee40904ae3606455d26b48188.tar.gz
rneovim-9f534422e6c3649ee40904ae3606455d26b48188.tar.bz2
rneovim-9f534422e6c3649ee40904ae3606455d26b48188.zip
eval/typval: Fix typo
[ci skip]
-rw-r--r--src/nvim/eval/typval.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval/typval.h b/src/nvim/eval/typval.h
index a7255fdba0..c0d1790c63 100644
--- a/src/nvim/eval/typval.h
+++ b/src/nvim/eval/typval.h
@@ -422,7 +422,7 @@ static inline int tv_list_uidx(const list_T *const l, int n)
/// Normalize index: that is, return either -1 or non-negative index
///
-/// @param[in] l List to intex. Used to get length.
+/// @param[in] l List to index. Used to get length.
/// @param[in] n List index, possibly negative.
///
/// @return -1 or list index in range [0, tv_list_len(l)).