summaryrefslogtreecommitdiff
path: root/src/sds.c
diff options
context:
space:
mode:
authorTed Nyman <ted@ted.io>2013-11-08 15:38:41 -0800
committerMatt Stancliff <matt@genges.com>2014-09-29 06:49:07 -0400
commit39be4bf496fc0b045b7d8d1ff58f109c05f163da (patch)
treeb01963b457705251e276dbebe9e94b0bbc5aedf5 /src/sds.c
parentd9462d27801b337c482d8cde741081a29fcc14fb (diff)
downloadredis-39be4bf496fc0b045b7d8d1ff58f109c05f163da.tar.gz
Fix on-place -> in-place
Closes #1373
Diffstat (limited to 'src/sds.c')
-rw-r--r--src/sds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sds.c b/src/sds.c
index f051ea8f7..0ad925b4a 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. */