comparison src/dict.c @ 22827:20ccf5f7dc6d v8.2.1961

patch 8.2.1961: various comments can be improved Commit: https://github.com/vim/vim/commit/22286895fce0e45e42126c7f2e35ebf43bc625d9 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Nov 5 20:50:51 2020 +0100 patch 8.2.1961: various comments can be improved Problem: Various comments can be improved. Solution: Various comment adjustments.
author Bram Moolenaar <Bram@vim.org>
date Thu, 05 Nov 2020 21:00:05 +0100
parents 674ba3200e1f
children 5b2f97d10a8c
comparison
equal deleted inserted replaced
22826:4d437e6f0be7 22827:20ccf5f7dc6d
20 // since it will get freed when the dict is unused and gets freed. 20 // since it will get freed when the dict is unused and gets freed.
21 static dict_T *first_dict = NULL; 21 static dict_T *first_dict = NULL;
22 22
23 /* 23 /*
24 * Allocate an empty header for a dictionary. 24 * Allocate an empty header for a dictionary.
25 * Caller should take care of the reference count.
25 */ 26 */
26 dict_T * 27 dict_T *
27 dict_alloc(void) 28 dict_alloc(void)
28 { 29 {
29 dict_T *d; 30 dict_T *d;