Fixed typo in documentation

Closes #7943
This commit is contained in:
Federico Caselli 2016-04-07 14:34:22 +02:00
parent f9426709ef
commit 3c2473bac6
1 changed files with 2 additions and 2 deletions

View File

@ -988,7 +988,7 @@ export var Attribute: AttributeFactory = makeParamDecorator(AttributeMetadata);
* <div #findme>...</div>
* </seeker>
*
* @Component({ selector: 'foo' })
* @Component({ selector: 'seeker' })
* class seeker {
* constructor(@Query('findme') elList: QueryList<ElementRef>) {...}
* }
@ -1006,7 +1006,7 @@ export var Attribute: AttributeFactory = makeParamDecorator(AttributeMetadata);
* </seeker>
*
* @Component({
* selector: 'foo'
* selector: 'seeker'
* })
* class Seeker {
* constructor(@Query('findMe, findMeToo') elList: QueryList<ElementRef>) {...}