@@ -213,11 +213,10 @@ import {DEFAULT} from 'angular2/change_detection';
213213 *
214214 *
215215 * A directive can also query for other child directives. Since parent directives are instantiated
216- * before child
217- * directives, a directive can't simply inject the list of child directives. Instead, the directive
218- * injects a {@link QueryList}, which updates its contents as children are added, removed, or moved
219- * by a directive
220- * that uses a {@link ViewContainerRef} such as a `for`, an `if`, or a `switch`.
216+ * before child directives, a directive can't simply inject the list of child directives. Instead,
217+ * the directive injects a {@link QueryList}, which updates its contents as children are added,
218+ * removed, or moved by a directive that uses a {@link ViewContainerRef} such as a `ng-for`, an
219+ * `ng-if`, or an `ng-switch`.
221220 *
222221 * ```
223222 * @Directive ({ selector: '[my-directive]' })
@@ -228,8 +227,7 @@ import {DEFAULT} from 'angular2/change_detection';
228227 * ```
229228 *
230229 * This directive would be instantiated with a {@link QueryList} which contains `Dependency` 4 and
231- * 6. Here, `Dependency`
232- * 5 would not be included, because it is not a direct child.
230+ * 6. Here, `Dependency` 5 would not be included, because it is not a direct child.
233231 *
234232 * ### Injecting a live collection of descendant directives
235233 *
0 commit comments