From 1d52cfba13d51406866b9e9717fb9341867dfd49 Mon Sep 17 00:00:00 2001 From: Sekib Omazic Date: Sun, 26 Apr 2015 22:42:34 +0200 Subject: [PATCH] chore(query_list.js): fix minor typos Typos fixed Closes #1549 --- modules/angular2/src/core/compiler/query_list.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/angular2/src/core/compiler/query_list.js b/modules/angular2/src/core/compiler/query_list.js index fe66c6f539..4cc8941358 100644 --- a/modules/angular2/src/core/compiler/query_list.js +++ b/modules/angular2/src/core/compiler/query_list.js @@ -20,7 +20,7 @@ import {BaseQueryList} from './base_query_list'; * ```html * * ... - * {{o.text}} + * {{o.text}} * * ``` * @@ -32,7 +32,7 @@ import {BaseQueryList} from './base_query_list'; * partialy since `*for` could rearange the list of `` components which would not be reported to `` * component and thus the list of `` componets would be out of sync with respect to the list of `` 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: ` *
    - *
  • {{pane.title}}
  • + *
  • {{pane.title}}
  • *
* * `