chore(query_list.js): fix minor typos

Typos fixed

Closes #1549
This commit is contained in:
Sekib Omazic 2015-04-26 22:42:34 +02:00 committed by Pawel Kozlowski
parent bfa381b35a
commit 1d52cfba13
1 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ import {BaseQueryList} from './base_query_list';
* ```html
* <tabs>
* <pane title="Overview">...</pane>
* <pane *for="o in objects" [title]="o.title">{{o.text}}</pane>
* <pane *for="#o of objects" [title]="o.title">{{o.text}}</pane>
* </tabs>
* ```
*
@ -32,7 +32,7 @@ import {BaseQueryList} from './base_query_list';
* partialy since `*for` could rearange the list of `<pane>` components which would not be reported to `<tabs>`
* component and thus the list of `<pane>` componets would be out of sync with respect to the list of `<pane>` elements.
*
* A prefferd solution is to inject a `QueryList` which is a live list of directives in the component`s light DOM.
* A preferred solution is to inject a `QueryList` which is a live list of directives in the component`s light DOM.
*
* ```javascript
* @Component({
@ -41,7 +41,7 @@ import {BaseQueryList} from './base_query_list';
* @View({
* template: `
* <ul>
* <li *for="pane of panes">{{pane.title}}</li>
* <li *for="#pane of panes">{{pane.title}}</li>
* </ul>
* <content></content>
* `