From ea8213b39a57c8fd603b895a5fac517e2fab6d26 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Fri, 7 Apr 2017 11:20:14 -0400 Subject: [PATCH] docs(changelog): add http import to the steps to upgrade --- CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb7367849b..c2d09347eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -61,7 +61,13 @@ With this release comes a major update to Angular (Angular 4.0!), the latest ver ], ``` -3. If you are using Http, Import the `HttpModule` in your `app/app.module.ts` file: +3. If you are using `Http`, import the `HttpModule` in your `app/app.module.ts` file: + + ``` + import { HttpModule } from '@angular/http'; + ``` + + and then add it to the imports in the same file: ``` imports: [