docs(pipes): add missing parenthesis in AsyncPipe example

Closes #4139
This commit is contained in:
Georgios Kalpakas 2015-09-11 20:43:11 +03:00 committed by Misko Hevery
parent 47e09a38e6
commit efaed076ab
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ var _observableStrategy = new ObservableStrategy();
* class Task {
* time = new Observable<number>(observer => {
* setInterval(_ =>
* observer.next(new Date().getTime(), 500);
* observer.next(new Date().getTime()), 500);
* });
* }
*/