Changed dollar sign to a full word

Related to: https://github.com/bobthecow/mustache.php/issues/241
This commit is contained in:
Benjamin Milde
2014-12-19 18:41:05 +01:00
parent fdf41dd673
commit 87dd660266
+2 -2
View File
@@ -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}}
```