Skip to content

Commit

Permalink
Merge pull request #1672 from nimakarimiank/master
Browse files Browse the repository at this point in the history
style(schedule): grammatical issue in code comments in timeout.decorator.ts
  • Loading branch information
kamilmysliwiec authored Jun 5, 2024
2 parents 5124031 + 3664cc2 commit c887208
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/decorators/timeout.decorator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ import {
} from '../schedule.constants';

/**
* Schedules an timeout (`setTimeout`).
* Schedules a timeout (`setTimeout`).
*/
export function Timeout(timeout: number): MethodDecorator;
/**
* Schedules an timeout (`setTimeout`).
* Schedules a timeout (`setTimeout`).
*/
export function Timeout(name: string, timeout: number): MethodDecorator;
/**
* Schedules an timeout (`setTimeout`).
* Schedules a timeout (`setTimeout`).
*/
export function Timeout(
nameOrTimeout: string | number,
Expand Down

0 comments on commit c887208

Please # to comment.