diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index 29bed25..4c8c0e6 100644
a
|
b
|
operators, from lowest to highest, is as follows:
|
533 | 533 | |
534 | 534 | (This follows Python exactly). So, for example, the following complex if tag: |
535 | 535 | |
| 536 | .. code-block:: django |
| 537 | |
536 | 538 | {% if a == b or c == d and e %} |
537 | 539 | |
538 | 540 | ...will be interpreted as: |
… |
… |
If ``value`` is the list ``['a', 'b', 'c']``, the output will be ``'a'``.
|
1483 | 1485 | fix_ampersands |
1484 | 1486 | ~~~~~~~~~~~~~~ |
1485 | 1487 | |
1486 | | ..note:: |
| 1488 | .. note:: |
1487 | 1489 | |
1488 | 1490 | This is rarely useful as ampersands are automatically escaped. See escape_ for more information. |
1489 | 1491 | |