Fixed typo in example.

This commit is contained in:
Michael Bayne
2011-02-28 17:20:31 -08:00
parent f4cfa40c2b
commit 04ea4b0cc0
+1 -1
View File
@@ -52,7 +52,7 @@ Usage
Using JMustache is very simple. Supply your template as a `String` or a
`Reader` and get back a `Template` that you can execute on any context:
String text = "One, two, {{{three}}. Three sir!";
String text = "One, two, {{three}}. Three sir!";
Template tmpl = Mustache.compiler().compile(text);
Map<String, String> data = new HashMap<String, String>();
data.put("three", "five");