Skip to content
This repository has been archived by the owner on Apr 13, 2021. It is now read-only.

Commit

Permalink
Merge pull request winstonjs#394 from ameesters/patch-1
Browse files Browse the repository at this point in the history
Forgotten ) in String interpolation section.
  • Loading branch information
3rd-Eden committed May 12, 2014
2 parents 9c6f9d8 + 2a89fec commit f679ab1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ logger.log('info', 'test message', 'first', 'second', {number: 123});
// info: test message first second
// meta = {number: 123}

logger.log('info', 'test message %s, %s', 'first', 'second', {number: 123}, function();
logger.log('info', 'test message %s, %s', 'first', 'second', {number: 123}, function());
// info: test message first, second
// meta = {numer: 123}
// callback = function(){}
Expand Down

0 comments on commit f679ab1

Please sign in to comment.