Skip to content
This repository has been archived by the owner on Jul 11, 2021. It is now read-only.

Commit

Permalink
Fix on-place -> in-place
Browse files Browse the repository at this point in the history
Closes redis#1373
  • Loading branch information
tnm authored and mattsta committed Sep 12, 2014
1 parent 20b3acb commit 4ba38f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sds.c
Expand Up @@ -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. */
Expand Down

0 comments on commit 4ba38f4

Please sign in to comment.