Skip to content

Commit 96e6e8e

Browse files
committed
Callback missing.
1 parent eb55ee3 commit 96e6e8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

github.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
Github.User = function(options) {
3838
this.username = options.username;
3939
var userPath = "/users/" + options.username;
40-
this.repos = function() {
40+
this.repos = function(cb) {
4141
_request("GET", userPath + "/repos", null, function(err, res) {
4242
cb(err, res);
4343
});

0 commit comments

Comments
 (0)