diff options
author | antirez <antirez@gmail.com> | 2014-02-06 17:03:02 +0100 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2014-02-06 17:03:04 +0100 |
commit | f41ed18eeee9361e667c7da0a3ca71294ffa5e50 (patch) | |
tree | 8de0db68a59be5cd1e02cd0d62bb91424eee172f | |
parent | 616150d1144e955efa294a4ceb4de4913f77a203 (diff) | |
download | sds-f41ed18eeee9361e667c7da0a3ca71294ffa5e50.tar.xz |
Fix broken markup hopefully.
-rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -109,13 +109,13 @@ program holds an SDS string and not a C string, however this is not mandatory. This is the simplest SDS program you can write that does something: - ```c - sds mystring = sdsnew("Hello World!"); - printf("%s\n", mystring); - sdsfree(mystring); +```c +sds mystring = sdsnew("Hello World!"); +printf("%s\n", mystring); +sdsfree(mystring); - output> Hello World! - ``` +output> Hello World! +``` The above small program already shows a few important things about SDS: |