Skip to content

Commit

Permalink
docs: fix typo in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
kuskoman committed Oct 19, 2022
1 parent 2fa8147 commit cab04ad
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ To do it, simply create new object (or class):
import { Transport, LogEvent, LogEventWithReplacedNulls } from 'nest-logging-transport';

const customTransport = {
log(event: LogEvent, eventWithoutNulls: LogEventWithReplacedNulls) {
// [...]
}
log(event: LogEvent, eventWithoutNulls: LogEventWithReplacedNulls) {
// [...]
}
},
// [...]
};
```

You can find examples in [src/transports](./src/transports/).
Expand All @@ -76,7 +76,7 @@ Normal log:
}
```

Log with replaces nulls:
Log with replaced nulls:

```js
{
Expand Down

0 comments on commit cab04ad

Please sign in to comment.