Skip to content

Commit

Permalink
Add missing closing curly brace in transports documentation (#1737)
Browse files Browse the repository at this point in the history
  • Loading branch information
JasoonS committed Jun 26, 2023
1 parent 802171c commit 9540007
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/transports.md
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ const pino = require('pino')
const transport = pino.transport({
targets: [
{ target: '/absolute/path/to/my-transport.mjs', level: 'error' },
{ target: 'some-file-transport', options: { destination: '/dev/null' }
{ target: 'some-file-transport', options: { destination: '/dev/null' } }
]
})
const logger = pino(transport)
Expand Down

0 comments on commit 9540007

Please sign in to comment.