diff --git a/modules/angular2/src/core/pipes/async_pipe.ts b/modules/angular2/src/core/pipes/async_pipe.ts index b45249d576..e31b91fbd8 100644 --- a/modules/angular2/src/core/pipes/async_pipe.ts +++ b/modules/angular2/src/core/pipes/async_pipe.ts @@ -44,6 +44,7 @@ var _observableStrategy = new ObservableStrategy(); * The example below binds the `time` Observable to the view. Every 500ms, the `time` Observable * updates the view with the current time. * + * ``` * import {Observable} from 'angular2/core'; * @Component({ * selector: "task-cmp" @@ -57,6 +58,7 @@ var _observableStrategy = new ObservableStrategy(); * observer.next(new Date().getTime()), 500); * }); * } + * ``` */ @Pipe({name: 'async', pure: false}) @Injectable()