Skip to content

Commit 3c2473b

Browse files
committed
Fixed typo in documentation
Closes angular#7943
1 parent f942670 commit 3c2473b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

modules/angular2/src/core/metadata.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -988,7 +988,7 @@ export var Attribute: AttributeFactory = makeParamDecorator(AttributeMetadata);
988988
* <div #findme>...</div>
989989
* </seeker>
990990
*
991-
* @Component({ selector: 'foo' })
991+
* @Component({ selector: 'seeker' })
992992
* class seeker {
993993
* constructor(@Query('findme') elList: QueryList<ElementRef>) {...}
994994
* }
@@ -1006,7 +1006,7 @@ export var Attribute: AttributeFactory = makeParamDecorator(AttributeMetadata);
10061006
* </seeker>
10071007
*
10081008
* @Component({
1009-
* selector: 'foo'
1009+
* selector: 'seeker'
10101010
* })
10111011
* class Seeker {
10121012
* constructor(@Query('findMe, findMeToo') elList: QueryList<ElementRef>) {...}

0 commit comments

Comments
 (0)