From 2aeaedc51997f63e36ec38d702650d4c605e2757 Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 28 Sep 2020 18:47:57 -0600 Subject: [PATCH] docs(docs-infra): replace a comma with a period at the end of a sentence (#39034) In order to keep document consistency this commit replaces a comma with a period at the end of a sentence PR Close #39034 --- aio/content/guide/architecture-services.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/architecture-services.md b/aio/content/guide/architecture-services.md index f55e255fea..785e51ab8c 100644 --- a/aio/content/guide/architecture-services.md +++ b/aio/content/guide/architecture-services.md @@ -95,7 +95,7 @@ or in the `@NgModule()` or `@Component()` metadata Registering the provider in the `@Injectable()` metadata also allows Angular to optimize an app by removing the service from the compiled app if it isn't used. -* When you register a provider with a [specific NgModule](guide/architecture-modules), the same instance of a service is available to all components in that NgModule. To register at this level, use the `providers` property of the `@NgModule()` decorator, +* When you register a provider with a [specific NgModule](guide/architecture-modules), the same instance of a service is available to all components in that NgModule. To register at this level, use the `providers` property of the `@NgModule()` decorator. ``` @NgModule({