From bff5c24ed24282b948a0d0531a6ed7d8cf58a718 Mon Sep 17 00:00:00 2001 From: Rae Krantz Date: Wed, 31 Oct 2018 14:20:01 -0400 Subject: [PATCH] docs: fix typo (#26878) PR Close #26878 --- 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 8559581702..ebf44c1a17 100644 --- a/aio/content/guide/architecture-services.md +++ b/aio/content/guide/architecture-services.md @@ -48,7 +48,7 @@ Similarly, use the `@Injectable()` decorator to indicate that a component or oth * An injector creates dependencies, and maintains a *container* of dependency instances that it reuses if possible. -* A *provider* is an object that tell an injector how to obtain or create a dependency. +* A *provider* is an object that tells an injector how to obtain or create a dependency. For any dependency that you need in your app, you must register a provider with the app's injector, so that the injector can use the provider to create new instances.