Skip to content

Commit

Permalink
zipmap.c: update comments above
Browse files Browse the repository at this point in the history
  • Loading branch information
sunheehnus authored and antirez committed Dec 9, 2014
1 parent c86b031 commit 2f52a11
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/zipmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,9 @@
* <len> is the length of the following string (key or value).
* <len> lengths are encoded in a single value or in a 5 bytes value.
* If the first byte value (as an unsigned 8 bit value) is between 0 and
* 252, it's a single-byte length. If it is 253 then a four bytes unsigned
* 253, it's a single-byte length. If it is 254 then a four bytes unsigned
* integer follows (in the host byte ordering). A value of 255 is used to
* signal the end of the hash. The special value 254 is used to mark
* empty space that can be used to add new key/value pairs.
* signal the end of the hash.
*
* <free> is the number of free unused bytes after the string, resulting
* from modification of values associated to a key. For instance if "foo"
Expand Down

0 comments on commit 2f52a11

Please sign in to comment.