docs: Update select-query-builder.md (#10763)

Crystal Maiden, not Cristal.
This commit is contained in:
Arthur Peruzzo 2025-01-20 17:20:49 -03:00 committed by GitHub
parent 08cea16ac5
commit 0d082463ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -344,13 +344,13 @@ You can also supply an array of values, and have them transformed into a list of
statement, by using the special expansion syntax:
```typescript
.where("user.name IN (:...names)", { names: [ "Timber", "Cristal", "Lina" ] })
.where("user.name IN (:...names)", { names: [ "Timber", "Crystal", "Lina" ] })
```
Which becomes:
```sql
WHERE user.name IN ('Timber', 'Cristal', 'Lina')
WHERE user.name IN ('Timber', 'Crystal', 'Lina')
```
## Adding `WHERE` expression