Skip to content

Commit

Permalink
docs(api): fix binding example (#700)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsan authored and mcollina committed Sep 13, 2019
1 parent 0e1b4d2 commit a4a185a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/api.md
Expand Up @@ -508,7 +508,7 @@ const child = logger.child({ foo: 'bar' })
console.log(child.bindings())
// { foo: 'bar' }
const anotherChild = child.child({ MIX: { IN: 'always' } })
console.log(child.bindings())
console.log(anotherChild.bindings())
// { foo: 'bar', MIX: { IN: 'always' } }
```

Expand Down

0 comments on commit a4a185a

Please sign in to comment.