Skip to content
This repository has been archived by the owner on Jan 14, 2020. It is now read-only.

Commit

Permalink
Fixing typo in function name.
Browse files Browse the repository at this point in the history
  • Loading branch information
christensenep committed Jun 27, 2013
1 parent 1eac60c commit 734280a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/webhooks.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ exports.notifyOfReservedClaim = function notifyOfReservedClaim(email, claimCode,
});
};

exports.notifyOfAwardedBadge = function notifyOfRewardedBadge(email, badgeShortname, callback, isTesting) {
exports.notifyOfAwardedBadge = function notifyOfAwardedBadge(email, badgeShortname, callback, isTesting) {
callback = callback || function(err){ if (err) logger.log('info', util.format('Failed to notify %s of awarded badge %s for email %s. %s', exports.webhookUrl, badgeShortname, email, err)); };

var params = {
Expand Down

0 comments on commit 734280a

Please sign in to comment.