X Tutup
Skip to content

Commit 86c74cf

Browse files
committed
fix(changelog): correct import path
Closes #5681
1 parent 7f0925e commit 86c74cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ import * as core from 'angular2/core';
4848

4949
* Operators and Observables from RxJS (e.g. .map(), .toArray(), .toPromise(), etc ) now need to be explicitly imported (once per operator in your app)
5050
```
51-
import {Observable} from 'angular2/angular2/'
51+
import {Observable} from 'angular2/angular2'
5252
import 'rxjs/operators/map';
5353
import 'rxjs/observable/interval'
54-
54+
5555
Observable.interval(1000).subscribe(...);
56-
56+
5757
http.get('foos.json').map(res => res.json()).subscribe(...);
5858
```
5959

0 commit comments

Comments
 (0)
X Tutup