Skip to content

Commit fc92cf5

Browse files
committed
Typo
1 parent e63b481 commit fc92cf5

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

docs/5.x/development/element-queries.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,9 @@ Parameters are set using methods after creating an element query, or by passing
107107
{# ...or... #}
108108
109109
{% set images = craft.assets({
110-
kind: 'image',
111-
}).all() %}
110+
kind: 'image',
111+
})
112+
.all() %}
112113
113114
{# ...or if you’re fancy, set some parameters conditionally: #}
114115
@@ -123,7 +124,7 @@ Parameters are set using methods after creating an element query, or by passing
123124
```
124125

125126
::: tip
126-
Query methods (except for those that [execute](#executing-element-queries) a query) modify some internal properties and return the query itself, allowing you to chained more methods together—just like Craft’s [fluent config](../configure.md#style) syntax!
127+
Query methods (except for those that [execute](#executing-element-queries) a query) modify some internal properties and return the query itself, allowing you to chain methods together—just like Craft’s [fluent config](../configure.md#style) syntax!
127128
:::
128129

129130
All element queries support a standard set of methods (like `.id()`, `.title()`, and [`.search()`](../system/searching.md)). These are documented alongside the [element type-specific](#element-types) parameters (like `.kind()` in the example above).

0 commit comments

Comments
 (0)