Skip to content

Commit

Permalink
Merge pull request #670 from DenisGorbachev/patch-1
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
pose committed Jul 19, 2015
2 parents a08adc3 + 0688a22 commit 53e1889
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,12 +189,12 @@ logger.log('info', 'test message', 'first', 'second', {number: 123});

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

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

Expand Down

0 comments on commit 53e1889

Please sign in to comment.