From 0d6b74dd87414ca69e7f45925c76fa1359dfc460 Mon Sep 17 00:00:00 2001 From: Arun Kumar Date: Wed, 11 Jul 2018 11:41:18 +0530 Subject: [PATCH] docs: fix typo in component architecture guide (#24832) Change the sentence from 'this tells Angular how provide ...' to 'this tells Angular how to provide ...'. The current sentence does not make grammatical sense. PR Close #24832 --- aio/content/guide/architecture-components.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/guide/architecture-components.md b/aio/content/guide/architecture-components.md index b13a696671..7b8e808f35 100644 --- a/aio/content/guide/architecture-components.md +++ b/aio/content/guide/architecture-components.md @@ -40,7 +40,7 @@ Angular inserts an instance of the `HeroListComponent` view between those tags. * `templateUrl`: The module-relative address of this component's HTML template. Alternatively, you can provide the HTML template inline, as the value of the `template` property. This template defines the component's _host view_. -* `providers`: An array of **dependency injection providers** for services that the component requires. In the example, this tells Angular how provide the `HeroService` instance that the component's constructor uses to get the list of heroes to display. +* `providers`: An array of **dependency injection providers** for services that the component requires. In the example, this tells Angular how to provide the `HeroService` instance that the component's constructor uses to get the list of heroes to display.
@@ -177,4 +177,4 @@ or modify aspects of DOM elements and components You can also write your own directives. Components such as `HeroListComponent` are one kind of custom directive. You can also create custom structural and attribute directives. - \ No newline at end of file +