Skip to content

Commit ade873f

Browse files
authored
Merge pull request #161 from bidoubiwa/patch-1
Documentation: Port is of type number but examples uses string
2 parents 85f0aec + 809fb0d commit ade873f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ async function main() {
1818
user: "user",
1919
database: "test",
2020
hostname: "localhost",
21-
port: "5432"
21+
port: 5432
2222
});
2323
await client.connect();
2424
const result = await client.query("SELECT * FROM people;");
@@ -85,7 +85,7 @@ let config;
8585

8686
config = {
8787
hostname: "localhost",
88-
port: "5432",
88+
port: 5432,
8989
user: "user",
9090
database: "test",
9191
applicationName: "my_custom_app"

0 commit comments

Comments
 (0)