From eaebd101684ec9b3b7b8467f95b57ebb6463c096 Mon Sep 17 00:00:00 2001 From: Rohan5commit <181558744+Rohan5commit@users.noreply.github.com> Date: Fri, 27 Feb 2026 18:01:38 +0800 Subject: [PATCH] docs: remove duplicated word in string dict comments Signed-off-by: Rohan5commit <181558744+Rohan5commit@users.noreply.github.com> --- src/server.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server.c b/src/server.c index 3143213b4..949615d09 100644 --- a/src/server.c +++ b/src/server.c @@ -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 */