diff --git a/modules/angular2/src/core/change_detection/pipe_transform.ts b/modules/angular2/src/core/change_detection/pipe_transform.ts index 0495411917..b57d6e2f25 100644 --- a/modules/angular2/src/core/change_detection/pipe_transform.ts +++ b/modules/angular2/src/core/change_detection/pipe_transform.ts @@ -29,8 +29,6 @@ * ``` * * Invoking `{{ 'ok' | repeat:3 }}` in a template produces `okokok`. - * - * ``` */ export interface PipeTransform { transform(value: any, args: any[]): any; }