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.