docs: fix typo in lightweight injection guide (#38741)

PR Close #38741
This commit is contained in:
Aristeidis Bampakos 2020-09-08 17:03:41 +03:00 committed by atscott
parent 73001b42fe
commit 4e5286180b
1 changed files with 1 additions and 1 deletions

View File

@ -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`.
```