summaryrefslogtreecommitdiff
path: root/src/dict.h
diff options
context:
space:
mode:
authorSalvatore Sanfilippo <antirez@gmail.com>2012-10-22 02:55:23 -0700
committerSalvatore Sanfilippo <antirez@gmail.com>2012-10-22 02:55:23 -0700
commitecd82f59fe5296de2733154bfcf1a4b95d4547aa (patch)
tree8e6f4639eb37edf30fb6b12ebf41c4f90643b62b /src/dict.h
parente5f794ff3abd844a08c0b01faa15550fd7014d7c (diff)
parent4b1f6ad3e7a5c7c28618e43e7539c9a937bf8521 (diff)
downloadredis-ecd82f59fe5296de2733154bfcf1a4b95d4547aa.tar.gz
Merge pull request #693 from ghurrell/dict-h-typos
Fix (cosmetic) typos in dict.h
Diffstat (limited to 'src/dict.h')
-rw-r--r--src/dict.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dict.h b/src/dict.h
index f480ae539..3a311f171 100644
--- a/src/dict.h
+++ b/src/dict.h
@@ -1,11 +1,11 @@
/* Hash Tables Implementation.
*
- * This file implements in memory hash tables with insert/del/replace/find/
- * get-random-element operations. Hash tables will auto resize if needed
+ * This file implements in-memory hash tables with insert/del/replace/find/
+ * get-random-element operations. Hash tables will auto-resize if needed
* tables of power of two in size are used, collisions are handled by
* chaining. See the source code for more information... :)
*
- * Copyright (c) 2006-2010, Salvatore Sanfilippo <antirez at gmail dot com>
+ * Copyright (c) 2006-2012, Salvatore Sanfilippo <antirez at gmail dot com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -80,7 +80,7 @@ typedef struct dict {
int iterators; /* number of iterators currently running */
} dict;
-/* If safe is set to 1 this is a safe iteartor, that means, you can call
+/* If safe is set to 1 this is a safe iterator, that means, you can call
* dictAdd, dictFind, and other functions against the dictionary even while
* iterating. Otherwise it is a non safe iterator, and only dictNext()
* should be called while iterating. */