From 4bd34102070db46043ac637f14286c3a33cb8027 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Wed, 8 Jan 2014 11:02:29 -0800 Subject: [PATCH] Fixed typo in docs. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 729c710..9fa12a5 100644 --- a/README.md +++ b/README.md @@ -253,7 +253,7 @@ template. You can customize this formatting by implementing the `Mustache.Format } protected DateFormat _fmt = new SimpleDateFormat("yyyy/MM/dd"); }).compile("{{msg}}: {{today}}").execute(new Object() { - String msg = Date: "; + String msg = "Date"; Date today = new Date(); }) // result: Date: 2013/01/08