Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d738a62

Browse files
committed
Fixed whitespace
1 parent 807498f commit d738a62

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

github.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@
2323
XMLHttpRequest = window.XMLHttpRequest;
2424
}
2525

26-
26+
2727
var API_URL = 'https://api.github.com';
2828

2929
var Github = function(options) {
3030

3131
// HTTP Request Abstraction
3232
// =======
33-
//
33+
//
3434
// I'm not proud of this and neither should you be if you were responsible for the XMLHttpRequest spec.
3535

3636
function _request(method, path, data, cb, raw) {
@@ -160,7 +160,7 @@
160160
Github.Repository = function(options) {
161161
var repo = options.name;
162162
var user = options.user;
163-
163+
164164
var that = this;
165165
var repoPath = "/repos/" + user + "/" + repo;
166166

@@ -205,7 +205,7 @@
205205

206206
// Delete a reference
207207
// --------
208-
//
208+
//
209209
// repo.deleteRef('heads/gh-pages')
210210
// repo.deleteRef('tags/v1.0')
211211

@@ -468,7 +468,7 @@
468468
// }
469469
// }
470470
// }
471-
471+
472472
this.create = function(options, cb){
473473
_request("POST","/gists", options, cb);
474474
};

0 commit comments

Comments
 (0)