Skip to content

Commit b182b3e

Browse files
committed
Small change in documentation
Signed-off-by: chandr-andr (Kiselev Aleksandr) <chandr@chandr.net>
1 parent b43a8ea commit b182b3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/usage/types/array_types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ from psqlpy.extra_types import TextArray
4242
async def main() -> None:
4343
pool = ConnectionPool()
4444
result = await pool.execute(
45-
querystring="SELECT * FROM users WHERE id = ANY($1)",
45+
querystring="SELECT * FROM users WHERE name = ANY($1)",
4646
parameters=[
47-
TextArray([1, 2, 3]),
47+
TextArray(["Alex", "Dev", "Who"]),
4848
]
4949
)
5050
```

0 commit comments

Comments
 (0)