man/mustache.5.ron in mustache-0.99.6 vs man/mustache.5.ron in mustache-0.99.7
- old
+ new
@@ -86,11 +86,11 @@
* <b>GitHub</b>
### Sections
-Sections render blocks of text one or more times, depending on the
+Sections render blocks of text zero or more times, depending on the
value of the key in the current context.
A section begins with a pound and ends with a slash. That is,
`{{#person}}` begins a "person" section while `{{/person}}` ends it.
@@ -205,10 +205,10 @@
An inverted section begins with a caret (hat) and ends with a
slash. That is `{{^person}}` begins a "person" inverted section while
`{{/person}}` ends it.
-While sections can be used to render text one or more times based on the
+While sections can be used to render text zero or more times based on the
value of the key, inverted sections may render text once based
on the inverse value of the key. That is, they will be rendered
if the key doesn't exist, is false, or is an empty list.
Template: