diff options
author | Salvatore Sanfilippo <antirez@gmail.com> | 2014-02-06 17:00:17 +0100 |
---|---|---|
committer | Salvatore Sanfilippo <antirez@gmail.com> | 2014-02-06 17:00:17 +0100 |
commit | 2ac40d2902104532297ba03e719b3c0670535f12 (patch) | |
tree | b22819476e7e6b4513e47be9ed3be1edf0064cbd | |
parent | b6102c3b85cbcb9550e2e38ffff4535917b89508 (diff) | |
parent | 08686b8e296bc818b1e05e434148522a9e242312 (diff) | |
download | sds-2ac40d2902104532297ba03e719b3c0670535f12.tar.xz |
Merge pull request #4 from dchest/patch-1
Fix list item indentation
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -149,7 +149,7 @@ There are many ways to create SDS strings: output> ABC of len 3 ``` -Note: `sdslen` return value is casted to `int` because it returns a `size_t` + Note: `sdslen` return value is casted to `int` because it returns a `size_t` type. You can use the right `printf` specifier instead of casting. * The `sdsempty()` function creates an empty zero-length string: |