docs(di): fix typo in advanced di doc (#36634)

PR Close #36634
This commit is contained in:
Aleksander 2020-04-15 00:14:32 -04:00 committed by Alex Rickabaugh
parent 72f534f7f8
commit 35c6ed2675
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ Often there is a need to create multiple instances of essentially the same injec
Doing the following would be very inefficient.
```
function createComponetInjector(parent, providers: Binding[]) {
function createComponentInjector(parent, providers: Binding[]) {
return parent.resolveAndCreateChild(providers);
}
```