diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2015-01-19 23:34:50 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-01-19 23:36:04 +0100 |
commit | 0ad2e70d12143179fafcfba924c390fc45527ba9 (patch) | |
tree | 99434ef9a23ea6f5c48ad64697f8ff697667bc15 | |
parent | 9c28892114175ddeb19d2684079f326ce36600de (diff) | |
download | sds-0ad2e70d12143179fafcfba924c390fc45527ba9.tar.xz |
sdsIncrLen: Remove note about negative increment
This usage was broken by the earlier change to a size_t for the incr
argument
-rw-r--r-- | src/sds.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -696,9 +696,6 @@ size_t sdsAllocSize(sds s) { * user calls sdsMakeRoomFor(), writes something after the end of * the current string, and finally needs to set the new length. * - * Note: it is possible to use a negative increment in order to - * right-trim the string. - * * Usage example: * * Using sdsIncrLen() and sdsMakeRoomFor() it is possible to mount the |