From 7b3161a2298a94ff1481ce977a6648808728dd92 Mon Sep 17 00:00:00 2001 From: Jeff Cross Date: Wed, 9 Sep 2015 21:49:35 -0700 Subject: [PATCH] fix(pipes): add triple ticks around async_pipe code sample Closes #4110 --- modules/angular2/src/core/pipes/async_pipe.ts | 2 ++ 1 file changed, 2 insertions(+) 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()