From 4ca38aa3b702aac12d03cfa29a918b39a738fd3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kevin=20Sj=C3=B6berg?= Date: Sun, 14 Jun 2015 17:01:11 +0200 Subject: [PATCH] Correction in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 54b94899d..6c94c1b42 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Generally you will access the PostgreSQL server through a pool of clients. A cl var pg = require('pg'); var conString = "postgres://username:password@localhost/database"; -//this starts initializes a connection pool +//this initializes a connection pool //it will keep idle connections open for a (configurable) 30 seconds //and set a limit of 20 (also configurable) pg.connect(conString, function(err, client, done) {