diff --git a/docs/pages/features/queries.mdx b/docs/pages/features/queries.mdx
index 2ecbaca1..39bcfbe1 100644
--- a/docs/pages/features/queries.mdx
+++ b/docs/pages/features/queries.mdx
@@ -27,7 +27,7 @@ console.log(res.rows[0])
```
- PostgreSQL does not support parameters for identifiers. If you need to have dynamic database, schema, table, or column names (e.g. in DDL statements) use
pg-format package for handling escaping these values to ensure you do not have SQL injection!
+ PostgreSQL does not support parameters for identifiers. If you need to have dynamic database, schema, table, or column names (e.g. in DDL statements) use [pg-format](https://www.npmjs.com/package/pg-format) package for handling escaping these values to ensure you do not have SQL injection!
Parameters passed as the second argument to `query()` will be converted to raw data types using the following rules: