Skip to content

Commit 453c9e6

Browse files
committed
Fix whitespace
1 parent 3892628 commit 453c9e6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/http.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ function Client ( ) {
663663

664664
self.addListener("connect", function () {
665665
if (this.https) {
666-
this.setSecure(this.credentials);
666+
this.setSecure(this.credentials);
667667
} else {
668668
parser.reinitialize('response');
669669
debug('requests: ' + sys.inspect(requests));
@@ -780,7 +780,7 @@ exports.cat = function (url, encoding_, headers_) {
780780
}
781781

782782
var url = require("url").parse(url);
783-
783+
784784
var hasHost = false;
785785
if (headers instanceof Array) {
786786
for (var i = 0, l = headers.length; i < l; i++) {
@@ -802,7 +802,7 @@ exports.cat = function (url, encoding_, headers_) {
802802
if (!hasHost) headers["Host"] = url.hostname;
803803

804804
var content = "";
805-
805+
806806
var client = exports.createClient(url.port || 80, url.hostname);
807807
var req = client.request((url.pathname || "/")+(url.search || "")+(url.hash || ""), headers);
808808

0 commit comments

Comments
 (0)