We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06d55cd commit 3c8af6fCopy full SHA for 3c8af6f
docs/5.x/reference/twig/filters.md
@@ -1568,8 +1568,8 @@ This can be useful to prevent typographic [widows and orphans](https://en.wikipe
1568
Returns an array without the specified item(s).
1569
1570
```twig
1571
-{% set entries = craft.entries().section('articles').limit(3).find %}
1572
-{% set firstEntry = entries[0] %}
+{% set entries = craft.entries().section('articles').limit(3).all() %}
+{% set firstEntry = entries|first %}
1573
{% set remainingEntries = entries|without(firstEntry) %}
1574
```
1575
0 commit comments