From f41ed18eeee9361e667c7da0a3ca71294ffa5e50 Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 6 Feb 2014 17:03:02 +0100 Subject: Fix broken markup hopefully. --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0a7f158..83d0cdf 100644 --- a/README.md +++ b/README.md @@ -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: -- cgit v1.2.3-54-g00ecf