diff --git a/src/common/utils/decorators/exception-filters.decorator.ts b/src/common/utils/decorators/exception-filters.decorator.ts index 1aa98a00dc4..7c5c1c9992b 100644 --- a/src/common/utils/decorators/exception-filters.decorator.ts +++ b/src/common/utils/decorators/exception-filters.decorator.ts @@ -27,11 +27,11 @@ export const ExceptionFilters = (...filters: ExceptionFilter[]) => { /** * Setups exception filters to the chosen context. * When the `@UseFilters()` is used on the controller level: - * - Exception Filter will be setuped to the every handler (every method) + * - Exception Filter will be set up to every handler (every method) * * When the `@UseFilters()` is used on the handle level: - * - Exception Filter will be setuped only to specified method + * - Exception Filter will be set up only to specified method * * @param {ExceptionFilter[]} ...filters (instances) */ -export const UseFilters = (...filters: ExceptionFilter[]) => defineFiltersMetadata(...filters); \ No newline at end of file +export const UseFilters = (...filters: ExceptionFilter[]) => defineFiltersMetadata(...filters); diff --git a/src/common/utils/decorators/use-guards.decorator.ts b/src/common/utils/decorators/use-guards.decorator.ts index 8394c35bc5c..56047fe5298 100644 --- a/src/common/utils/decorators/use-guards.decorator.ts +++ b/src/common/utils/decorators/use-guards.decorator.ts @@ -3,10 +3,10 @@ import { GUARDS_METADATA } from '../../constants'; /** * Setups guards to the chosen context. * When the `@UseGuards()` is used on the controller level: - * - Guard will be setuped to the every handler (every method) + * - Guard will be set up to every handler (every method) * * When the `@UseGuards()` is used on the handle level: - * - Guard will be setuped only to specified method + * - Guard will be set up only to specified method * * @param {} ...guards (types) */ diff --git a/src/common/utils/decorators/use-interceptors.decorator.ts b/src/common/utils/decorators/use-interceptors.decorator.ts index 51cb4e814ef..18888a5e030 100644 --- a/src/common/utils/decorators/use-interceptors.decorator.ts +++ b/src/common/utils/decorators/use-interceptors.decorator.ts @@ -3,10 +3,10 @@ import { INTERCEPTORS_METADATA } from '../../constants'; /** * Setups interceptors to the chosen context. * When the `@UseInterceptors()` is used on the controller level: - * - Interceptor will be setuped to the every handler (every method) + * - Interceptor will be set up to every handler (every method) * * When the `@UseInterceptors()` is used on the handle level: - * - Interceptor will be setuped only to specified method + * - Interceptor will be set up only to specified method * * @param {} ...interceptors (types) */ diff --git a/src/common/utils/decorators/use-pipes.decorator.ts b/src/common/utils/decorators/use-pipes.decorator.ts index 0498f3fc29c..5f0bf502ecd 100644 --- a/src/common/utils/decorators/use-pipes.decorator.ts +++ b/src/common/utils/decorators/use-pipes.decorator.ts @@ -4,10 +4,10 @@ import { PIPES_METADATA } from '../../constants'; /** * Setups pipes to the chosen context. * When the `@UsePipes()` is used on the controller level: - * - Pipe will be setuped to the every handler (every method) + * - Pipe will be set up to every handler (every method) * * When the `@UsePipes()` is used on the handle level: - * - Pipe will be setuped only to specified method + * - Pipe will be set up only to specified method * * @param {PipeTransform[]} ...pipes (instances) */