diff options
author | antirez <antirez@gmail.com> | 2014-02-06 16:06:14 +0100 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2014-02-06 16:06:14 +0100 |
commit | 46293bda3315cfa3adcba3084deddf115f28b7db (patch) | |
tree | 9441dacfdaff817e1f31db01de2edfdc813ea625 | |
parent | c120b51d0f62141dbe4193d57321d83bef3434a8 (diff) | |
download | sds-46293bda3315cfa3adcba3084deddf115f28b7db.tar.xz |
Markdown fix try #2.
-rw-r--r-- | README.md | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -133,6 +133,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` type. You can use the right `printf` specifier instead of casting. @@ -144,6 +145,7 @@ type. You can use the right `printf` specifier instead of casting. output> 0 + * The `sdsdup()` function duplicates an already existing SDS string: @@ -155,6 +157,7 @@ type. You can use the right `printf` specifier instead of casting. output> Hello Hello + Obtaining the string length --- |