From 4e5286180b3cd87f99e774747f57ca6e7b190746 Mon Sep 17 00:00:00 2001 From: Aristeidis Bampakos Date: Tue, 8 Sep 2020 17:03:41 +0300 Subject: [PATCH] docs: fix typo in lightweight injection guide (#38741) PR Close #38741 --- aio/content/guide/lightweight-injection-tokens.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/lightweight-injection-tokens.md b/aio/content/guide/lightweight-injection-tokens.md index d8fc94dac4..c401c6b917 100644 --- a/aio/content/guide/lightweight-injection-tokens.md +++ b/aio/content/guide/lightweight-injection-tokens.md @@ -141,7 +141,7 @@ Because the token is now an abstract class, and the injectable component impleme The implementation of the method (with all of its code overhead) resides in the injectable component that can be tree-shaken. This allows the parent to communicate with the child (if it is present) in a type-safe manner. -For example, the `LibCardComponent` now queries`LibHeaderToken` rather than `LibHeaderComponent`. +For example, the `LibCardComponent` now queries `LibHeaderToken` rather than `LibHeaderComponent`. The following example shows how the pattern allows `LibCardComponent` to communicate with the `LibHeaderComponent` without actually referring to `LibHeaderComponent`. ```