diff --git a/scripts/templates/directive/spec.ts.tmpl b/scripts/templates/directive/spec.ts.tmpl index 2a21a514a9..c6bd0fd920 100644 --- a/scripts/templates/directive/spec.ts.tmpl +++ b/scripts/templates/directive/spec.ts.tmpl @@ -1,4 +1,3 @@ - describe('$CLASSNAME', () => { it('should do something', () => { expect(true).toEqual(true); diff --git a/scripts/templates/directive/ts.tmpl b/scripts/templates/directive/ts.tmpl index 00b23efced..b71c0023cc 100644 --- a/scripts/templates/directive/ts.tmpl +++ b/scripts/templates/directive/ts.tmpl @@ -1,11 +1,11 @@ import { Directive } from '@angular/core'; -/* - Generated class for the $CLASSNAME directive. - - See https://angular.io/docs/ts/latest/api/core/index/DirectiveMetadata-class.html - for more info on Angular 2 Directives. -*/ +/** + * Generated class for the $CLASSNAME directive. + * + * See https://angular.io/docs/ts/latest/api/core/index/DirectiveMetadata-class.html + * for more info on Angular Directives. + */ @Directive({ selector: '[$FILENAME]' // Attribute selector })