diff --git a/Readme.md b/Readme.md
index b379149..e0e900e 100644
--- a/Readme.md
+++ b/Readme.md
@@ -57,37 +57,37 @@ It has methods for all standard html tags, and has methods for all closing tags
A little example:
```
- HTMLBuilder b;
+ HTMLBuilder b;
//Add a div, with the class content:
- b.div()->cls("content");
+ b.div()->cls("content");
//header html tag:
- b.header();
+ b.header();
//just write the string "My webpage"
- b.w("My webpage");
+ b.w("My webpage");
//Add a span tag, with the class header_link:
- b.cheader();
+ b.cheader();
//close the content div:
b.cdiv();
@@ -96,7 +96,7 @@ A little example:
b.write_tag();
//print the resulting string
- printf("%s\n", b.result.c_str());
+ printf("%s\n", b.result.c_str());
```
The resulting html should look like this: