X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/7226cbd1d978b15d4379e7f643595de35b5b3779..f7ccc4830bfd9345452027020c12c100d01090ef:/src/zipmap.c diff --git a/src/zipmap.c b/src/zipmap.c index 9f0fc718..65ed29c8 100644 --- a/src/zipmap.c +++ b/src/zipmap.c @@ -298,7 +298,7 @@ unsigned char *zipmapDel(unsigned char *zm, unsigned char *key, unsigned int kle return zm; } -/* Call it before to iterate trought elements via zipmapNext() */ +/* Call before iterating through elements via zipmapNext() */ unsigned char *zipmapRewind(unsigned char *zm) { return zm+1; } @@ -452,7 +452,7 @@ int main(void) { vlen, vlen, value); } } - printf("\nIterate trought elements:\n"); + printf("\nIterate through elements:\n"); { unsigned char *i = zipmapRewind(zm); unsigned char *key, *value;