docs: correct full stop position in providers section (#34712)

Correct the position of the full stop at the end of the limiting provider scope with components paragraph.

PR Close #34712
This commit is contained in:
mikef 2020-01-09 21:32:50 +00:00 committed by atscott
parent 0b9c4245f9
commit afc88074cd
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ Another way to limit provider scope is by adding the service you want to limit t
`providers` array. Component providers and NgModule providers are independent of each other. This
method is helpful when you want to eagerly load a module that needs a service all to itself.
Providing a service in the component limits the service only to that component (other components in
the same module cant access it.)
the same module cant access it).
<code-example path="providers/src/app/app.component.ts" region="component-providers" header="src/app/app.component.ts"></code-example>