diff options
author | Harry Jeffery <harry@exec64.co.uk> | 2014-02-07 09:45:49 +0000 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-12-03 19:31:30 +0100 |
commit | d73c81a02bd9f8cb2525b5b5db49edb9caf16658 (patch) | |
tree | 2d62b5336703c57660e3249e4321e97232747372 | |
parent | 8eb5cb89f4e01566cc2eedc418f11a5defc0b4a4 (diff) | |
download | sds-d73c81a02bd9f8cb2525b5b5db49edb9caf16658.tar.xz |
Correct 'hold' typo in readme
A 'hold' is missing its 'h' and a variable was misnamed. This patch fixes these issues.
[antirez/sds#12 fixed the variable typos]
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -485,7 +485,7 @@ SDS library, since you can simply create a new SDS string from scratch with the new value instead of copying the value in an existing SDS string. The reason is efficiency: `sdsnewlen` will always allocate a new string while `sdscpylen` will try to reuse the existing string if there is enough -room to old the new content specified by the user, and will allocate a new +room to hold the new content specified by the user, and will allocate a new one only if needed. Quoting strings |