diff --git a/packages/core/src/di/injectable.ts b/packages/core/src/di/injectable.ts index cda90f63a4..e6a3c10050 100644 --- a/packages/core/src/di/injectable.ts +++ b/packages/core/src/di/injectable.ts @@ -70,7 +70,8 @@ export interface Injectable { * - 'root' : The application-level injector in most apps. * - 'platform' : A special singleton platform injector shared by all * applications on the page. - * - 'any' : The NgModule injector that receives the resolution. + * - 'any' : Provides a unique instance in every module (including lazy modules) that injects the + * token. * */ providedIn?: Type|'root'|'platform'|'any'|null;