docs(core): correct SomeService to SomeComponent (#38264)

PR Close #38264
This commit is contained in:
Ahn 2020-07-28 10:11:05 +02:00 committed by Misko Hevery
parent 3d0be5213e
commit b4449e35bf
1 changed files with 1 additions and 1 deletions

View File

@ -332,7 +332,7 @@ export interface ViewChildDecorator {
* * A template reference variable as a string (e.g. query `<my-component #cmp></my-component>`
* with `@ViewChild('cmp')`)
* * Any provider defined in the child component tree of the current component (e.g.
* `@ViewChild(SomeService) someService: SomeService`)
* `@ViewChild(SomeComponent) someComponent: SomeComponent`)
* * Any provider defined through a string token (e.g. `@ViewChild('someToken') someTokenVal:
* any`)
* * A `TemplateRef` (e.g. query `<ng-template></ng-template>` with `@ViewChild(TemplateRef)