diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -325,7 +325,7 @@ You can use `sdscatprintf` in order to convert numbers into SDS strings: ```c int some_integer = 100; -sds num = sdscatprintf(sdsempty(),"%s\n", some_integer); +sds num = sdscatprintf(sdsempty(),"%d\n", some_integer); ``` However this is slow and we have a special function to make it efficient. |