diff --git a/scripts/templates/component/ts.tmpl b/scripts/templates/component/ts.tmpl index 080975b222..179376f418 100644 --- a/scripts/templates/component/ts.tmpl +++ b/scripts/templates/component/ts.tmpl @@ -3,8 +3,8 @@ import { Component } from '@angular/core'; /** * Generated class for the $CLASSNAME component. * - * See https://angular.io/docs/ts/latest/api/core/index/ComponentMetadata-class.html - * for more info on Angular Components. + * See https://angular.io/api/core/Component for more info on Angular + * Components. */ @Component({ selector: '$FILENAME', diff --git a/scripts/templates/directive/ts.tmpl b/scripts/templates/directive/ts.tmpl index b71c0023cc..c4d2d99ba1 100644 --- a/scripts/templates/directive/ts.tmpl +++ b/scripts/templates/directive/ts.tmpl @@ -3,8 +3,8 @@ 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 Directives. + * See https://angular.io/api/core/Directive for more info on Angular + * Directives. */ @Directive({ selector: '[$FILENAME]' // Attribute selector diff --git a/scripts/templates/page/ts.tmpl b/scripts/templates/page/ts.tmpl index e308cadcd4..55021e3eeb 100644 --- a/scripts/templates/page/ts.tmpl +++ b/scripts/templates/page/ts.tmpl @@ -4,8 +4,8 @@ $IMPORTSTATEMENT /** * Generated class for the $CLASSNAME page. * - * See http://ionicframework.com/docs/components/#navigation for more info - * on Ionic pages and navigation. + * See https://ionicframework.com/docs/components/#navigation for more info on + * Ionic pages and navigation. */ $IONICPAGE @Component({ diff --git a/scripts/templates/pipe/ts.tmpl b/scripts/templates/pipe/ts.tmpl index 40aa800e19..7aeb6b168f 100644 --- a/scripts/templates/pipe/ts.tmpl +++ b/scripts/templates/pipe/ts.tmpl @@ -3,8 +3,7 @@ import { Pipe, PipeTransform } from '@angular/core'; /** * Generated class for the $CLASSNAME pipe. * - * See https://angular.io/docs/ts/latest/guide/pipes.html for more info on - * Angular Pipes. + * See https://angular.io/api/core/Pipe for more info on Angular Pipes. */ @Pipe({ name: '$PIPENAME', diff --git a/scripts/templates/provider/ts.tmpl b/scripts/templates/provider/ts.tmpl index 6b4e8cce21..dbb8f960f6 100644 --- a/scripts/templates/provider/ts.tmpl +++ b/scripts/templates/provider/ts.tmpl @@ -5,8 +5,8 @@ import 'rxjs/add/operator/map'; /* Generated class for the $CLASSNAME provider. - See https://angular.io/docs/ts/latest/guide/dependency-injection.html - for more info on providers and Angular DI. + See https://angular.io/guide/dependency-injection for more info on providers + and Angular DI. */ @Injectable() export class $CLASSNAME { diff --git a/scripts/templates/tabs/ts.tmpl b/scripts/templates/tabs/ts.tmpl index b2563f7332..3434294c05 100755 --- a/scripts/templates/tabs/ts.tmpl +++ b/scripts/templates/tabs/ts.tmpl @@ -4,8 +4,8 @@ $TABS_IMPORTSTATEMENT /** * Generated class for the $CLASSNAME tabs. * - * See https://angular.io/docs/ts/latest/guide/dependency-injection.html for - * more info on providers and Angular DI. + * See https://ionicframework.com/docs/components/#navigation for more info on + * Ionic pages and navigation. */ $IONICPAGE @Component({