docs(annotations): fix casing in view annotation

- Fix the casing to match key name exposed for `templateUrl` in `View`
  annotation

Closes #1495
This commit is contained in:
Wesley Cho 2015-04-21 21:01:22 -07:00 committed by Misko Hevery
parent afe0e45453
commit 8e18d6c6cf
1 changed files with 2 additions and 2 deletions

View File

@ -36,14 +36,14 @@ export class View {
/** /**
* Specifies a template URL for an angular component. * 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; templateUrl:string;
/** /**
* Specifies an inline template for an angular component. * 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; template:string;