@angular/core 9.0.0 → 9.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/core.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v9.0.0
2
+ * @license Angular v9.0.1
3
3
  * (c) 2010-2020 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -2969,7 +2969,8 @@ export declare interface Injectable {
2969
2969
  * - 'root' : The application-level injector in most apps.
2970
2970
  * - 'platform' : A special singleton platform injector shared by all
2971
2971
  * applications on the page.
2972
- * - 'any' : The NgModule injector that receives the resolution.
2972
+ * - 'any' : Provides a unique instance in every module (including lazy modules) that injects the
2973
+ * token.
2973
2974
  *
2974
2975
  */
2975
2976
  providedIn?: Type<any> | 'root' | 'platform' | 'any' | null;