diff options
author | ZyX <kp-pav@yandex.ru> | 2017-01-07 00:17:31 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-01-07 00:17:31 +0300 |
commit | dd48d7b94b8a0f5b4612a3821330d508d5b4241c (patch) | |
tree | 1f3327dccb9fdd471be97b5dce3af1a2b7d579f4 | |
parent | 527636f1585c8d1f2a404af09210566c1f08d39a (diff) | |
download | rneovim-dd48d7b94b8a0f5b4612a3821330d508d5b4241c.tar.gz rneovim-dd48d7b94b8a0f5b4612a3821330d508d5b4241c.tar.bz2 rneovim-dd48d7b94b8a0f5b4612a3821330d508d5b4241c.zip |
eval: Fix typo
-rw-r--r-- | src/nvim/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 5fb6c04eb2..45f317fbea 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -19108,7 +19108,7 @@ static inline void _nothing_conv_func_end(typval_T *const tv, const int copyID) if (pt == NULL) { return; } - // Dictionaly should already be freed by the time. + // Dictionary should already be freed by the time. // If it was not freed then it is a part of the reference cycle. assert(pt->pt_dict == NULL || pt->pt_dict->dv_copyID == copyID); pt->pt_dict = NULL; |