diff --git a/packages/common/decorators/modules/module.decorator.ts b/packages/common/decorators/modules/module.decorator.ts index c5df824d9cb..b0547b6d393 100644 --- a/packages/common/decorators/modules/module.decorator.ts +++ b/packages/common/decorators/modules/module.decorator.ts @@ -5,7 +5,7 @@ import { validateModuleKeys } from '../../utils/validate-module-keys.util'; * Decorator that marks a class as a [module](https://docs.nestjs.com/modules). * * Modules are used by Nest to organize the application structure into scopes. Controllers - * and Providers are scoped by the module they are declared in. Modules and their + * and Providers are scoped by the module they are declared in. Modules and their * classes (Controllers and Providers) form a graph that determines how Nest * performs [Dependency Injection (DI)](https://docs.nestjs.com/providers#dependency-injection). *