@@ -1095,14 +1095,15 @@ export var ContentChild: ContentChildFactory = makePropDecorator(ContentChildMet
10951095/**
10961096 * Declares a list of child element references.
10971097 *
1098- * Angular automatically updates the list when the DOM was updated.
1098+ * Angular automatically updates the list when the DOM is updated.
10991099 *
11001100 * `ViewChildren` takes a argument to select elements.
11011101 *
11021102 * - If the argument is a type, directives or components with the type will be bound.
11031103 *
1104- * - If the argument is a string, the string behaviors as comma-separated selectors. For each
1105- * selector, an element matched template variables (e.g. `#child`) will be bound.
1104+ * - If the argument is a string, the string is interpreted as a list of comma-separated selectors.
1105+ * For each selector, an element containing the matching template variable (e.g. `#child`) will be
1106+ * bound.
11061107 *
11071108 * View children are set before the `ngAfterViewInit` callback is called.
11081109 *
@@ -1174,17 +1175,17 @@ export var ViewChildren: ViewChildrenFactory = makePropDecorator(ViewChildrenMet
11741175
11751176// TODO(alexeagle): remove the duplication of this doc. It is copied from ViewChildMetadata.
11761177/**
1177- * Declares a reference of child element.
1178+ * Declares a reference to a child element.
11781179 *
11791180 * `ViewChildren` takes a argument to select elements.
11801181 *
11811182 * - If the argument is a type, a directive or a component with the type will be bound.
11821183 *
1183- * - If the argument is a string, the string behaviors as a selectors . An element matched template
1184- * variables (e.g. `#child`) will be bound.
1184+ * - If the argument is a string, the string is interpreted as a selector . An element containing the
1185+ * matching template variable (e.g. `#child`) will be bound.
11851186 *
1186- * In either case, `@ViewChild()` assigns the first (looking from above) element if the result is
1187- * multiple.
1187+ * In either case, `@ViewChild()` assigns the first (looking from above) element if there are
1188+ * multiple matches .
11881189 *
11891190 * View child is set before the `ngAfterViewInit` callback is called.
11901191 *
0 commit comments