From efc6684cd35e464e8972f76aee2f4fcf4289fd5b Mon Sep 17 00:00:00 2001 From: Jerry Gao Date: Wed, 18 Jul 2018 16:41:40 -0400 Subject: [PATCH] docs: fix typo in dependency injection guide (#24972) PR Close #24972 --- aio/content/guide/dependency-injection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/dependency-injection.md b/aio/content/guide/dependency-injection.md index b2559ab55d..66ab41f752 100644 --- a/aio/content/guide/dependency-injection.md +++ b/aio/content/guide/dependency-injection.md @@ -692,7 +692,7 @@ If the factory function needs access to other DI tokens, it can use the inject f const TOKEN = new InjectionToken('tree-shakeable token', { providedIn: 'root', factory: () => - new AppConfig(inject(Parameter1), inject(Paremeter2)), }); + new AppConfig(inject(Parameter1), inject(Parameter2)), }); {@a optional}