Skip to content

Commit

Permalink
Merge pull request tj#41 from TooTallNate/patch-1
Browse files Browse the repository at this point in the history
\n after the output with --debug
  • Loading branch information
tj committed Dec 4, 2011
2 parents 8267cbd + 2e8441c commit 1df6bda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/dox
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ process.stdin.on('data', function(chunk){ buf += chunk; });
process.stdin.on('end', function(){
var obj = dox.parseComments(buf);
if (program.debug) {
process.stdout.write(util.inspect(obj, false, Infinity, true));
process.stdout.write(util.inspect(obj, false, Infinity, true) + '\n');
} else {
process.stdout.write(JSON.stringify(obj));
}
Expand Down

0 comments on commit 1df6bda

Please sign in to comment.