From 3671f3023bdf2a23d624076d5ddc343d6bc244a0 Mon Sep 17 00:00:00 2001 From: Justin Willis Date: Thu, 29 Sep 2016 10:34:58 -0500 Subject: [PATCH] chore(changelog): still have to be imported This line was incorrect in saying that you did not have to import providers, pipes etc. You still have to import those into the components you want to use them in, but they should not be in the providers, pipes or directives array in @Component. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3af105a32..98b4699d5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -343,7 +343,7 @@ Note: For details on NgModules you can read the Angular docs on them [here](http 8. Import and add each of your providers to the `providers` array in `src/app/app.module.ts`. -9. Remove any use of the `providers`, `pipes` and `directives` entries in `@Component`, and their corresponding `import` statements, from your pages. +9. Remove any use of the `providers`, `pipes` and `directives` arrays in `@Component`. 10. Change any uses of the `private` TypeScript keyword to `public`.