diff --git a/modules/angular2/src/directives/ng_for.ts b/modules/angular2/src/directives/ng_for.ts index a73da8899b1b7..035c5110991d7 100644 --- a/modules/angular2/src/directives/ng_for.ts +++ b/modules/angular2/src/directives/ng_for.ts @@ -33,11 +33,8 @@ import {isPresent, isBlank} from 'angular2/src/facade/lang'; * - `
  • ...
  • ` * - `` */ -@Directive({ - selector: '[ng-for][ng-for-of]', - properties: ['ngForOf'], - lifecycle: [LifecycleEvent.onCheck] -}) +@Directive( + {selector: '[ng-for][ng-for-of]', properties: ['ngForOf'], lifecycle: [LifecycleEvent.onCheck]}) export class NgFor { _ngForOf: any; _pipe: Pipe;