From 3236ae0ee118d0734c90fa9f3767435396213470 Mon Sep 17 00:00:00 2001 From: Kiran Kumaar Sathyanarayana Date: Mon, 26 Oct 2020 15:42:30 +0530 Subject: [PATCH] docs: fix typo in component overview (#39425) Fixes #39424 PR Close #39425 --- 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 8b91727375..e3d5e037c7 100644 --- a/aio/content/guide/component-overview.md +++ b/aio/content/guide/component-overview.md @@ -110,7 +110,7 @@ To create a new component manually: ## Specifying a component's CSS selector -Every component requires a CSS _selector_. A selector instructs Angular to instantiate this component wherever it finds the corresponding tag in template HTML. For example, consider a component, `hello-world.component.ts` that defines its selector as `app-hello-world`. This selector instructs angular to instantiate this component any time the tag, `` in a template. +Every component requires a CSS _selector_. A selector instructs Angular to instantiate this component wherever it finds the corresponding tag in template HTML. For example, consider a component, `hello-world.component.ts` that defines its selector as `app-hello-world`. This selector instructs angular to instantiate this component any time the tag, `` in a template. To specify a component's selector, add a `selector` statement to the `@Component` decorator.