mirror of
https://github.com/fluencelabs/redis
synced 2025-04-03 00:01:04 +00:00
Fix (cosmetic) typos in dict.h
This commit is contained in:
parent
ece77037e9
commit
4b1f6ad3e7
@ -1,11 +1,11 @@
|
|||||||
/* Hash Tables Implementation.
|
/* Hash Tables Implementation.
|
||||||
*
|
*
|
||||||
* This file implements in memory hash tables with insert/del/replace/find/
|
* This file implements in-memory hash tables with insert/del/replace/find/
|
||||||
* get-random-element operations. Hash tables will auto resize if needed
|
* get-random-element operations. Hash tables will auto-resize if needed
|
||||||
* tables of power of two in size are used, collisions are handled by
|
* tables of power of two in size are used, collisions are handled by
|
||||||
* chaining. See the source code for more information... :)
|
* 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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* 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 */
|
int iterators; /* number of iterators currently running */
|
||||||
} dict;
|
} 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
|
* dictAdd, dictFind, and other functions against the dictionary even while
|
||||||
* iterating. Otherwise it is a non safe iterator, and only dictNext()
|
* iterating. Otherwise it is a non safe iterator, and only dictNext()
|
||||||
* should be called while iterating. */
|
* should be called while iterating. */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user