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 * ```html
* <tabs> * <tabs>
* <pane title="Overview">...</pane> * <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> * </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>` * 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. * 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 * ```javascript
* @Component({ * @Component({
@ -41,7 +41,7 @@ import {BaseQueryList} from './base_query_list';
* @View({ * @View({
* template: ` * template: `
* <ul> * <ul>
* <li *for="pane of panes">{{pane.title}}</li> * <li *for="#pane of panes">{{pane.title}}</li>
* </ul> * </ul>
* <content></content> * <content></content>
* ` * `