From b8eb344c1c4e2c40ac54219e1f785734a9b9ffc4 Mon Sep 17 00:00:00 2001 From: Josep Sayol Date: Thu, 16 Feb 2017 14:13:33 +0100 Subject: [PATCH] docs(di): fix spelling --- public/docs/ts/latest/cookbook/dependency-injection.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/cookbook/dependency-injection.jade b/public/docs/ts/latest/cookbook/dependency-injection.jade index fbbca40bd3..dadbd56f40 100644 --- a/public/docs/ts/latest/cookbook/dependency-injection.jade +++ b/public/docs/ts/latest/cookbook/dependency-injection.jade @@ -786,7 +786,7 @@ a(id="parent-tree") `@SkipSelf` is essential for two reasons: - 1. It tell the injector to start its search for a `Parent` dependency in a component *above* itself, + 1. It tells the injector to start its search for a `Parent` dependency in a component *above* itself, which *is* what parent means. 2. Angular throws a cyclic dependency error if we omit the `@SkipSelf` decorator.