updated documentation for the + operator (closes #30)

This commit is contained in:
Fabien Potencier
2010-03-25 13:29:30 +01:00
parent 522001fdbb
commit 49add7a61d
+2 -4
View File
@@ -804,10 +804,8 @@ exist:
Twig allows you to calculate with values. This is rarely useful in templates
but exists for completeness' sake. The following operators are supported:
* `+`: Adds two objects together. Usually the objects are numbers but if both
are strings or lists you can concatenate them this way. This however is not
the preferred way to concatenate strings! For string concatenation have a
look at the `~` operator. `{{ 1 + 1 }}` is `2`.
* `+`: Adds two objects together (the operands are casted to numbers). `{{ 1
+ 1 }}` is `2`.
* `-`: Substract the second number from the first one. `{{ 3 - 2 }}` is `1`.