Skip to content

Commit

Permalink
chore (docs): fix typos in client docs (#1230)
Browse files Browse the repository at this point in the history
Fixes a number of wrong field names in client docs.
  • Loading branch information
kevin-dp authored May 7, 2024
1 parent 2be5f17 commit 7c3609e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/api/clients/typescript.md
Original file line number Diff line number Diff line change
Expand Up @@ -1011,7 +1011,7 @@ Greater than or equal operator:
```ts
{
where: {
name: {
age: {
gte: 18
}
}
Expand Down Expand Up @@ -1155,12 +1155,12 @@ The same can be achieved by using `AND` explicitly:
where: {
AND: [
{
name: {
age: {
gte: 18,
}
},
{
name: {
age: {
lte: 65,
}
},
Expand All @@ -1181,7 +1181,7 @@ Operators can also be combined using `OR`:
}
},
{
name: {
age: {
gt: 65,
}
},
Expand All @@ -1202,7 +1202,7 @@ Operators can be negated using `NOT`:
}
},
{
name: {
age: {
gt: 65,
}
},
Expand Down

0 comments on commit 7c3609e

Please sign in to comment.