From 3273856d3341fade90061be59841ab0a9b5b8d59 Mon Sep 17 00:00:00 2001 From: Licanueto Date: Thu, 12 Nov 2020 20:40:30 -0300 Subject: [PATCH] docs: fixes on paragraph (#39664) Phrasing improved, missing word added, lowercase "angular" fixed, unnecessary, commas removed. PR Close #39664 --- aio/content/guide/component-overview.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/guide/component-overview.md b/aio/content/guide/component-overview.md index 00b2585a48..5b30913a1b 100644 --- a/aio/content/guide/component-overview.md +++ b/aio/content/guide/component-overview.md @@ -110,9 +110,9 @@ 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 `` appears in a template. -To specify a component's selector, add a `selector` statement to the `@Component` decorator. +Specify a component's selector by adding a `selector` statement to the `@Component` decorator.