man/mustache.5.html in mustache-0.11.0 vs man/mustache.5.html in mustache-0.11.1
- old
+ new
@@ -68,13 +68,13 @@
<h2>SYNOPSIS</h2>
<p>A typical Mustache template:</p>
<pre><code>Hello {{name}}
-You have just won ${{value}}!
+You have just won {{value}} dollars!
{{#in_ca}}
-Well, ${{taxed_value}}, after taxes.
+Well, {{taxed_value}} dollars, after taxes.
{{/in_ca}}
</code></pre>
<p>Given the following hash:</p>
@@ -87,11 +87,11 @@
</code></pre>
<p>Will produce the following:</p>
<pre><code>Hello Chris
-You have just won $10000!
-Well, $6000.0, after taxes.
+You have just won 10000 dollars!
+Well, 6000.0 dollars, after taxes.
</code></pre>
<h2>DESCRIPTION</h2>
<p>Mustache can be used for HTML, config files, source code -