Skip to content

Commit 95c2d98

Browse files
author
Nicolas
committed
'setuped' => 'set up'
1 parent d257441 commit 95c2d98

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

src/common/utils/decorators/exception-filters.decorator.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ export const ExceptionFilters = (...filters: ExceptionFilter[]) => {
2727
/**
2828
* Setups exception filters to the chosen context.
2929
* When the `@UseFilters()` is used on the controller level:
30-
* - Exception Filter will be setuped to the every handler (every method)
30+
* - Exception Filter will be set up to every handler (every method)
3131
*
3232
* When the `@UseFilters()` is used on the handle level:
33-
* - Exception Filter will be setuped only to specified method
33+
* - Exception Filter will be set up only to specified method
3434
*
3535
* @param {ExceptionFilter[]} ...filters (instances)
3636
*/
37-
export const UseFilters = (...filters: ExceptionFilter[]) => defineFiltersMetadata(...filters);
37+
export const UseFilters = (...filters: ExceptionFilter[]) => defineFiltersMetadata(...filters);

src/common/utils/decorators/use-guards.decorator.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import { GUARDS_METADATA } from '../../constants';
33
/**
44
* Setups guards to the chosen context.
55
* When the `@UseGuards()` is used on the controller level:
6-
* - Guard will be setuped to the every handler (every method)
6+
* - Guard will be set up to every handler (every method)
77
*
88
* When the `@UseGuards()` is used on the handle level:
9-
* - Guard will be setuped only to specified method
9+
* - Guard will be set up only to specified method
1010
*
1111
* @param {} ...guards (types)
1212
*/

src/common/utils/decorators/use-interceptors.decorator.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import { INTERCEPTORS_METADATA } from '../../constants';
33
/**
44
* Setups interceptors to the chosen context.
55
* When the `@UseInterceptors()` is used on the controller level:
6-
* - Interceptor will be setuped to the every handler (every method)
6+
* - Interceptor will be set up to every handler (every method)
77
*
88
* When the `@UseInterceptors()` is used on the handle level:
9-
* - Interceptor will be setuped only to specified method
9+
* - Interceptor will be set up only to specified method
1010
*
1111
* @param {} ...interceptors (types)
1212
*/

src/common/utils/decorators/use-pipes.decorator.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import { PIPES_METADATA } from '../../constants';
44
/**
55
* Setups pipes to the chosen context.
66
* When the `@UsePipes()` is used on the controller level:
7-
* - Pipe will be setuped to the every handler (every method)
7+
* - Pipe will be set up to every handler (every method)
88
*
99
* When the `@UsePipes()` is used on the handle level:
10-
* - Pipe will be setuped only to specified method
10+
* - Pipe will be set up only to specified method
1111
*
1212
* @param {PipeTransform[]} ...pipes (instances)
1313
*/

0 commit comments

Comments
 (0)