diff --git a/README.md b/README.md
index 80c2895..22fa07f 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@
### How to use
var template = new t("
Hello {{=name}}
");
- document.body.innerHtml = template.render({name: "World!"});
+ document.body.innerHTML = template.render({name: "World!"});
For more advanced usage check the [`t_test.html`](https://github.com/jasonmoo/t.js/blob/master/t_test.html).