Skip to content

Commit

Permalink
Fix casing in comments
Browse files Browse the repository at this point in the history
Signed-off-by: Kaustav Das Modak <[email protected]>
  • Loading branch information
Kaustav Das Modak committed Jun 20, 2015
1 parent d3bd1ba commit b64fa49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ irc.clients.freenode = new irc.module.Client(config.irc.freenode.server, config.
debug: true
});

// listen to push on github on branch master
// Listen to push on github on branch master
gh_webhook.on('push', function (repo, ref, data) {
util.log("GH push", data);
irc.clients.freenode.say("#applait",
["[Github]", data.pusher.name, "pushed", data.commits.length, "commits to",
data.repository.full_name, data.compare].join(" "));
});

// listen to github push
// Listen to github push
gh_webhook.listen();

0 comments on commit b64fa49

Please sign in to comment.