docs: Fix simple typo, termined -> terminated

There is a small typo in sds.c.

Should read `terminated` rather than `termined`.
This commit is contained in:
Tim Gates 2020-09-26 20:58:09 +10:00
parent 773d6ea8a7
commit f989670e59
No known key found for this signature in database
GPG Key ID: AE3BE0D53823CF05
1 changed files with 2 additions and 2 deletions

4
sds.c
View File

@ -72,7 +72,7 @@ static inline char sdsReqType(size_t string_size) {
* and 'initlen'. * and 'initlen'.
* If NULL is used for 'init' the string is initialized with zero bytes. * If NULL is used for 'init' the string is initialized with zero bytes.
* *
* The string is always null-termined (all the sds strings are, always) so * The string is always null-terminated (all the sds strings are, always) so
* even if you create an sds string with: * even if you create an sds string with:
* *
* mystring = sdsnewlen("abc",3); * mystring = sdsnewlen("abc",3);
@ -415,7 +415,7 @@ sds sdscpylen(sds s, const char *t, size_t len) {
return s; return s;
} }
/* Like sdscpylen() but 't' must be a null-termined string so that the length /* Like sdscpylen() but 't' must be a null-terminated string so that the length
* of the string is obtained with strlen(). */ * of the string is obtained with strlen(). */
sds sdscpy(sds s, const char *t) { sds sdscpy(sds s, const char *t) {
return sdscpylen(s, t, strlen(t)); return sdscpylen(s, t, strlen(t));