File tree Expand file tree Collapse file tree
src/common/utils/decorators Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ) ;
Original file line number Diff line number Diff 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 */
Original file line number Diff line number Diff 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 */
Original file line number Diff line number Diff 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 */
You can’t perform that action at this time.
0 commit comments