From 040673464c1049ad3c0c65cdb0171387d7bf7d79 Mon Sep 17 00:00:00 2001 From: Santosh Yadav Date: Fri, 29 Nov 2019 00:32:23 +0530 Subject: [PATCH] docs: small typo in DI docs (#34122) PR Close #34122 --- aio/content/guide/hierarchical-dependency-injection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/hierarchical-dependency-injection.md b/aio/content/guide/hierarchical-dependency-injection.md index d40a8b39f0..d1554f0961 100644 --- a/aio/content/guide/hierarchical-dependency-injection.md +++ b/aio/content/guide/hierarchical-dependency-injection.md @@ -243,7 +243,7 @@ By default, Angular always starts at the current `Injector` and keeps searching all the way up. Modifiers allow you to change the starting (self) or ending location. -Additionally, you can combine all of the modifiers except `@Host()` and `@Self()` and of course `@Skipself()` and `@Self()`. +Additionally, you can combine all of the modifiers except `@Host()` and `@Self()` and of course `@SkipSelf()` and `@Self()`. {@a optional}