[FIX] doc: add missing brackets

This commit is contained in:
Louis Wicket
2023-03-22 15:13:20 +01:00
committed by Géry Debongnie
parent 8893e026d3
commit ce61e90135
+1 -1
View File
@@ -477,7 +477,7 @@ not work with other iterables, such as `Set`. However, it is only a matter of
using the `...` javascript operator. For example:
```xml
<t t-foreach="...items" t-as="item">...</t>
<t t-foreach="[...items]" t-as="item">...</t>
```
The `...` operator will convert the `Set` (or any other iterables) into a list,