aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarry Jeffery <harry@exec64.co.uk>2014-02-07 09:45:49 +0000
committerJohannes Löthberg <johannes@kyriasis.com>2014-12-03 19:31:30 +0100
commitd73c81a02bd9f8cb2525b5b5db49edb9caf16658 (patch)
tree2d62b5336703c57660e3249e4321e97232747372
parent8eb5cb89f4e01566cc2eedc418f11a5defc0b4a4 (diff)
downloadsds-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.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 3a6461d..6cbfe07 100644
--- a/README.md
+++ b/README.md
@@ -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