diff options
author | antirez <antirez@gmail.com> | 2014-02-06 16:38:14 +0100 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2014-02-06 16:38:14 +0100 |
commit | f9b0cb3ec4cdb48e65acfb2783b3bdb6eaf9402a (patch) | |
tree | ea41b83d0eed96f40e3868e9761d2e1f75e851fd | |
parent | 219c9c13be51ea0d1908bf6f89b15ae38582cb63 (diff) | |
download | sds-f9b0cb3ec4cdb48e65acfb2783b3bdb6eaf9402a.tar.xz |
README: sentence improved in concatenating strings sec.
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -205,7 +205,7 @@ Concatenating strings Concatenating strings to other strings is likely the operation you will end using the most with a dynamic C string library. SDS provides different -functions to do concatenate to existing strings: +functions to concatenate strings to existing strings. sds sdscatlen(sds s, const void *t, size_t len); sds sdscat(sds s, const char *t); |