From 8a89a2436ff76121e8288adacfeb3768f8d9eee5 Mon Sep 17 00:00:00 2001 From: Josep Sayol Date: Thu, 16 Feb 2017 15:10:53 +0100 Subject: [PATCH] docs(di): fix spelling (#3261) --- 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 3f6e1ececd..2b9b143ac8 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.