From 87dd6602668d5afdf0495e6a1bd9e56fa75294d4 Mon Sep 17 00:00:00 2001 From: Benjamin Milde Date: Fri, 19 Dec 2014 18:41:05 +0100 Subject: [PATCH] Changed dollar sign to a full word Related to: https://github.com/bobthecow/mustache.php/issues/241 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b33b355..7c8294e 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,9 @@ And a more in-depth example -- this is the canonical Mustache template: ```html+jinja Hello {{name}} -You have just won ${{value}}! +You have just won {{value}} dollar! {{#in_ca}} -Well, ${{taxed_value}}, after taxes. +Well, {{taxed_value}} dollar, after taxes. {{/in_ca}} ```