Skip to content

Commit 67758fd

Browse files
authored
Merge pull request huangzworks#18 from Gangbiao/patch-1
更正错别字
2 parents 9bf4f92 + bd026c7 commit 67758fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dict.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ dictEntry *dictAddRaw(dict *d, void *key)
462462
return NULL;
463463

464464
/* Allocate the memory and store the new entry */
465-
// 决定该把新元素放在那个哈希表
465+
// 决定该把新元素放在哪个哈希表
466466
ht = dictIsRehashing(d) ? &d->ht[1] : &d->ht[0];
467467
// 为新元素分配节点空间
468468
entry = zmalloc(sizeof(*entry));

0 commit comments

Comments
 (0)