From d73c81a02bd9f8cb2525b5b5db49edb9caf16658 Mon Sep 17 00:00:00 2001 From: Harry Jeffery Date: Fri, 7 Feb 2014 09:45:49 +0000 Subject: 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] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3-54-g00ecf