Skip to content

Commit

Permalink
fix(): fix default values in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Feb 11, 2020
1 parent eeb51c1 commit d2fddd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/interfaces/typeorm-options.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ import { ConnectionOptions } from 'typeorm';
export type TypeOrmModuleOptions = {
/**
* Number of times to retry connecting
* Default: `0`
* Default: 10
*/
retryAttempts?: number;
/**
* Delay between connection retry attempts (ms)
* Default: `0`
* Default: 3000
*/
retryDelay?: number;
/**
Expand Down

0 comments on commit d2fddd3

Please sign in to comment.