From dd48d7b94b8a0f5b4612a3821330d508d5b4241c Mon Sep 17 00:00:00 2001 From: ZyX Date: Sat, 7 Jan 2017 00:17:31 +0300 Subject: eval: Fix typo --- src/nvim/eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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; -- cgit