summaryrefslogtreecommitdiff
path: root/src/dict.c
diff options
context:
space:
mode:
authorErik Dubbelboer <erik@dubbelboer.com>2012-04-07 15:45:53 +0300
committerErik Dubbelboer <erik@dubbelboer.com>2012-04-07 15:45:53 +0300
commit8d16e7a3c635fe89d9eec207ab630a028150bb7c (patch)
tree5b1cb6081f9f2c73774dbff8dd2758d19a33e604 /src/dict.c
parent65fd32ab0a7ff1d3d052e3b70dcceac6719de58c (diff)
downloadredis-8d16e7a3c635fe89d9eec207ab630a028150bb7c.tar.gz
Update src/dict.c
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 629a93917..e0622197f 100644
--- a/src/dict.c
+++ b/src/dict.c
@@ -280,7 +280,7 @@ int dictAdd(dict *d, void *key, void *val)
* a value returns the dictEntry structure to the user, that will make
* sure to fill the value field as he wishes.
*
- * This function is also directly exposed to user API to be called
+ * 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:
*
* entry = dictAddRaw(dict,mykey);