From 6b56bdfad58cbc70f9126a971e4ff3df90158ab5 Mon Sep 17 00:00:00 2001 From: akashnishant1031 <75719039+akashnishant1031@users.noreply.github.com> Date: Mon, 28 Dec 2020 19:22:57 +0530 Subject: [PATCH] docs(core): fix typo in component overview (#40269) There is a sentence that mentions `stylesUrls` but should be changed to `styleUrls`. PR Close #40269 --- aio/content/guide/component-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/component-overview.md b/aio/content/guide/component-overview.md index 226e396f7dba0..400e8dd1d0241 100644 --- a/aio/content/guide/component-overview.md +++ b/aio/content/guide/component-overview.md @@ -156,7 +156,7 @@ An Angular component requires a template defined using `template` or `templateUr You can declare component styles uses for its template in one of two ways: by referencing an external file, or directly within the component. -To declare the styles for a component in a separate file, add a `stylesUrls` property to the `@Component` decorator. +To declare the styles for a component in a separate file, add a `styleUrls` property to the `@Component` decorator.