diff --git a/packages/core/src/metadata/directives.ts b/packages/core/src/metadata/directives.ts index 0e34da068a..8e556613c6 100644 --- a/packages/core/src/metadata/directives.ts +++ b/packages/core/src/metadata/directives.ts @@ -482,8 +482,8 @@ export interface Component extends Directive { moduleId?: string; /** - * The URL of a template file for an Angular component. If provided, - * do not supply an inline template using `template`. + * The relative path or absolute URL of a template file for an Angular component. + * If provided, do not supply an inline template using `template`. * */ templateUrl?: string; @@ -496,7 +496,7 @@ export interface Component extends Directive { template?: string; /** - * One or more URLs for files containing CSS stylesheets to use + * One or more relative paths or absolute URLs for files containing CSS stylesheets to use * in this component. */ styleUrls?: string[];