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:
parent
afe0e45453
commit
8e18d6c6cf
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue