From 8e18d6c6cf9bbb7488d967eae89d72929fb7b7c2 Mon Sep 17 00:00:00 2001 From: Wesley Cho Date: Tue, 21 Apr 2015 21:01:22 -0700 Subject: [PATCH] docs(annotations): fix casing in view annotation - Fix the casing to match key name exposed for `templateUrl` in `View` annotation Closes #1495 --- modules/angular2/src/core/annotations/view.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/angular2/src/core/annotations/view.js b/modules/angular2/src/core/annotations/view.js index 3eb8e04319..2b98a28d57 100644 --- a/modules/angular2/src/core/annotations/view.js +++ b/modules/angular2/src/core/annotations/view.js @@ -36,14 +36,14 @@ export class View { /** * Specifies a template URL for an angular component. * - * NOTE: either `templateURL` or `template` should be used, but not both. + * NOTE: either `templateUrl` or `template` should be used, but not both. */ templateUrl:string; /** * Specifies an inline template for an angular component. * - * NOTE: either `templateURL` or `template` should be used, but not both. + * NOTE: either `templateUrl` or `template` should be used, but not both. */ template:string;