summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSun He <sunheehnus@gmail.com>2014-11-03 17:21:54 +0800
committerantirez <antirez@gmail.com>2014-12-09 15:14:14 +0100
commit76d53a677082d571354452b43b2a32c39575dcb3 (patch)
tree40178a5fbb80c2d12c5e77ad2a1b4ea7edca5a27
parent4848cf93357771b37f55bf1187a3756bd8ce354d (diff)
downloadredis-76d53a677082d571354452b43b2a32c39575dcb3.tar.gz
sds.c: Correct two spelling mistakes in comments
-rw-r--r--src/sds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sds.c b/src/sds.c
index 6370a25e5..5a3bc82b1 100644
--- a/src/sds.c
+++ b/src/sds.c
@@ -295,7 +295,7 @@ sds sdscpy(sds s, const char *t) {
* conversion. 's' must point to a string with room for at least
* SDS_LLSTR_SIZE bytes.
*
- * The function returns the lengh of the null-terminated string
+ * The function returns the length of the null-terminated string
* representation stored at 's'. */
#define SDS_LLSTR_SIZE 21
int sdsll2str(char *s, long long value) {
@@ -369,7 +369,7 @@ sds sdsfromlonglong(long long value) {
return sdsnewlen(buf,len);
}
-/* Like sdscatpritf() but gets va_list instead of being variadic. */
+/* Like sdscatprintf() but gets va_list instead of being variadic. */
sds sdscatvprintf(sds s, const char *fmt, va_list ap) {
va_list cpy;
char staticbuf[1024], *buf = staticbuf, *t;