From 74aeb27a26b905489888c3020d652ddba4d4684b Mon Sep 17 00:00:00 2001 From: Lynn Date: Thu, 17 Jul 2014 15:25:24 +0800 Subject: [PATCH] Remove surplus double quotes Closes #1877 --- src/sds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sds.c b/src/sds.c index 95454e99..f051ea8f 100644 --- a/src/sds.c +++ b/src/sds.c @@ -43,7 +43,7 @@ * The string is always null-termined (all the sds strings are, always) so * even if you create an sds string with: * - * mystring = sdsnewlen("abc",3"); + * mystring = sdsnewlen("abc",3); * * You can print the string with printf() as there is an implicit \0 at the * end of the string. However the string is binary safe and can contain