Skip to content

Commit 3b1a5be

Browse files
committed
remove trailing whitespaces in lib/index.js
1 parent 4272f21 commit 3b1a5be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ PG.prototype.connect = function(config, callback) {
5050
var client = new self.Client(c);
5151
client.connect(function(err) {
5252
if(err) { return callback(err); }
53-
53+
5454
//handle connected client background errors by emitting event
5555
//via the pg object and then removing errored client from the pool
5656
client.on('error', function(e) {
@@ -89,7 +89,7 @@ PG.prototype.cancel = function(config, client, query) {
8989

9090
module.exports = new PG(Client);
9191

92-
//lazy require native module...the native module may not have installed
92+
//lazy require native module...the native module may not have installed
9393
module.exports.__defineGetter__("native", function() {
9494
delete module.exports.native;
9595
return (module.exports.native = new PG(require(__dirname + '/native')));

0 commit comments

Comments
 (0)