diff --git a/docs/pages/features/pooling.mdx b/docs/pages/features/pooling.mdx index 1e4e0cde2..e5e36345c 100644 --- a/docs/pages/features/pooling.mdx +++ b/docs/pages/features/pooling.mdx @@ -43,7 +43,7 @@ const client = await pool.connect() const res = await client.query('SELECT * FROM users WHERE id = $1', [1]) console.log(res.rows[0]) -await client.release() +client.release() ```