From e946974547bef074e3bae12d324ac7ed43d84cb0 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Fri, 8 Nov 2013 15:38:41 -0800 Subject: [PATCH] Fix on-place -> in-place Closes #1373 --- src/sds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sds.c b/src/sds.c index f051ea8f71a5f..0ad925b4ab32d 100644 --- a/src/sds.c +++ b/src/sds.c @@ -109,7 +109,7 @@ void sdsupdatelen(sds s) { sh->len = reallen; } -/* Modify an sds string on-place to make it empty (zero length). +/* Modify an sds string in-place to make it empty (zero length). * However all the existing buffer is not discarded but set as free space * so that next append operations will not require allocations up to the * number of bytes previously available. */