summaryrefslogtreecommitdiff
path: root/src/dict.c
diff options
context:
space:
mode:
authorHarkrishn Patro <30795839+hpatro@users.noreply.github.com>2021-02-17 23:13:50 +0100
committerGitHub <noreply@github.com>2021-02-17 14:13:50 -0800
commit303465af35c13691f989b3400b028a94df1235d4 (patch)
treea4a912755e15c1e9578fe2ea0f169a10eeb9d6ec /src/dict.c
parent71ab81ec69f04c218820b4c9151cb9f7c1bd833b (diff)
downloadredis-303465af35c13691f989b3400b028a94df1235d4.tar.gz
Remove redundant pubsub list to store the patterns. (#8472)
Remove redundant pubsub list to store the patterns.
Diffstat (limited to 'src/dict.c')
-rw-r--r--src/dict.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dict.c b/src/dict.c
index 6c203b850..9ae066f33 100644
--- a/src/dict.c
+++ b/src/dict.c
@@ -301,7 +301,7 @@ int dictAdd(dict *d, void *key, void *val)
/* Low level add or find:
* This function adds the entry but instead of setting a value returns the
* dictEntry structure to the user, that will make sure to fill the value
- * field as he wishes.
+ * field as they wish.
*
* This function is also directly exposed to the user API to be called
* mainly in order to store non-pointers inside the hash value, example: