docs(changelog): add http import to the steps to upgrade

This commit is contained in:
Brandy Carney
2017-04-07 11:20:14 -04:00
committed by GitHub
parent a09c6c374b
commit ea8213b39a

View File

@ -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: [