From e7cc1d606a3783c07d0b53988910f4aacb5b9a82 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Thu, 28 Nov 2019 10:40:49 +0100 Subject: [PATCH] refactor(core): update missing-injectable migration description to match guide (#34125) Updates the description of the `missing-injectable` migration to mention the second pattern that will be automatically handled. PR Close #34125 --- packages/core/schematics/migrations.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/schematics/migrations.json b/packages/core/schematics/migrations.json index 8b2a39af3a..9d8c0e4803 100644 --- a/packages/core/schematics/migrations.json +++ b/packages/core/schematics/migrations.json @@ -22,7 +22,7 @@ }, "migration-v9-missing-injectable": { "version": "9.0.0-beta", - "description": "Missing @Injectable migration. In Angular 9, enforcement of @Injectable decorators for DI is a bit stricter. Read more about this here: https://v9.angular.io/guide/migration-injectable", + "description": "Missing @Injectable and incomplete provider definition migration. In Angular 9, enforcement of @Injectable decorators for DI is a bit stricter and incomplete provider definitions behave differently. Read more about this here: https://v9.angular.io/guide/migration-injectable", "factory": "./migrations/missing-injectable/index" }, "migration-v9-undecorated-classes-with-di": {