diff --git a/modules/angular2/src/directives/ng_for.ts b/modules/angular2/src/directives/ng_for.ts index 035c511099..a73da8899b 100644 --- a/modules/angular2/src/directives/ng_for.ts +++ b/modules/angular2/src/directives/ng_for.ts @@ -33,8 +33,11 @@ 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;