From 1beaf81e984e1148bc52f12af10d8003975b5887 Mon Sep 17 00:00:00 2001 From: Dima Kuzmich Date: Sun, 2 Aug 2015 10:30:00 +0300 Subject: [PATCH] docs(View): correct templateUrl and template definition Fixes #3444 Closes #3447 --- modules/angular2/src/core/annotations_impl/view.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/angular2/src/core/annotations_impl/view.ts b/modules/angular2/src/core/annotations_impl/view.ts index 56251cf53b..cbaf1cd9eb 100644 --- a/modules/angular2/src/core/annotations_impl/view.ts +++ b/modules/angular2/src/core/annotations_impl/view.ts @@ -37,14 +37,14 @@ export {ViewEncapsulation} from 'angular2/src/render/api'; @CONST() export class View { /** - * Specifies an inline template for an angular component. + * Specifies a template URL for an angular component. * * NOTE: either `templateUrl` or `template` should be used, but not both. */ templateUrl: string; /** - * Specifies a template URL for an angular component. + * Specifies an inline template for an angular component. * * NOTE: either `templateUrl` or `template` should be used, but not both. */