From 86c74cf3f312a788be211025b07d13f8df1fce91 Mon Sep 17 00:00:00 2001 From: Rob Wormald Date: Mon, 7 Dec 2015 14:45:50 -0800 Subject: [PATCH] fix(changelog): correct import path Closes #5681 --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d80c68c03c..f589f60883 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -48,12 +48,12 @@ import * as core from 'angular2/core'; * Operators and Observables from RxJS (e.g. .map(), .toArray(), .toPromise(), etc ) now need to be explicitly imported (once per operator in your app) ``` - import {Observable} from 'angular2/angular2/' + import {Observable} from 'angular2/angular2' import 'rxjs/operators/map'; import 'rxjs/observable/interval' - + Observable.interval(1000).subscribe(...); - + http.get('foos.json').map(res => res.json()).subscribe(...); ```