From 35597a8349795255c23113e4e7fc24fb9eafa9f4 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Tue, 28 Jul 2015 11:23:48 +0100 Subject: [PATCH] style(ngFor): add whitespace to `Directive` annotation --- modules/angular2/src/directives/ng_for.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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;