Skip to content

Commit

Permalink
Change indent for print function to 2 spaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
frankvm04 committed Jun 11, 2015
1 parent ee14468 commit 64bc0d1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ exports.Promise = require('bluebird');
exports.Cluster = require('./lib/cluster');

exports.print = function (err, reply) {
if (err) {
console.log("Error: " + err);
} else {
console.log("Reply: " + reply);
}
if (err) {
console.log("Error: " + err);
} else {
console.log("Reply: " + reply);
}
};

0 comments on commit 64bc0d1

Please sign in to comment.