Skip to content

Commit 95e1f02

Browse files
authored
Change word values to list (isar#1295)
While the argument says `list` the description contains the word `values` which can lead to confusion.
1 parent ffdd146 commit 95e1f02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/docs/queries.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@ Sometimes it is necessary to build a query based on some conditions or for diffe
155155
| Modifier | Description |
156156
| --------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
157157
| `.optional(cond, qb)` | Extends the query only if the `condition` is `true`. This can be used almost anywhere in a query for example to conditionally sort or limit it. |
158-
| `.anyOf(list, qb)` | Extends the query for each value in `values` and combines the conditions using logical **or**. |
159-
| `.allOf(list, qb)` | Extends the query for each value in `values` and combines the conditions using logical **and**. |
158+
| `.anyOf(list, qb)` | Extends the query for each value in `list` and combines the conditions using logical **or**. |
159+
| `.allOf(list, qb)` | Extends the query for each value in `list` and combines the conditions using logical **and**. |
160160

161161
In this example, we build a method that can find shoes with an optional filter:
162162

0 commit comments

Comments
 (0)