mirror of
https://github.com/redis/redis.git
synced 2026-05-28 04:02:46 -04:00
docs: remove duplicated word in string dict comments
Signed-off-by: Rohan5commit <181558744+Rohan5commit@users.noreply.github.com>
This commit is contained in:
parent
33319b80a7
commit
eaebd10168
1 changed files with 2 additions and 2 deletions
|
|
@ -707,7 +707,7 @@ dictType migrateCacheDictType = {
|
|||
NULL /* allow to expand */
|
||||
};
|
||||
|
||||
/* Dict for for case-insensitive search using null terminated C strings.
|
||||
/* Dict for case-insensitive search using null terminated C strings.
|
||||
* The keys stored in dict are sds though. */
|
||||
dictType stringSetDictType = {
|
||||
dictCStrCaseHash, /* hash function */
|
||||
|
|
@ -719,7 +719,7 @@ dictType stringSetDictType = {
|
|||
NULL /* allow to expand */
|
||||
};
|
||||
|
||||
/* Dict for for case-insensitive search using null terminated C strings.
|
||||
/* Dict for case-insensitive search using null terminated C strings.
|
||||
* The key and value do not have a destructor. */
|
||||
dictType externalStringType = {
|
||||
dictCStrCaseHash, /* hash function */
|
||||
|
|
|
|||
Loading…
Reference in a new issue