From a0651dc47bd018bfc2addf7cf680fa02b23a9eab Mon Sep 17 00:00:00 2001 From: DA <30979970+Ashish2097@users.noreply.github.com> Date: Thu, 3 Feb 2022 09:07:51 +0530 Subject: [PATCH] Removed extra space --- packages/common/decorators/modules/module.decorator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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). *