diff --git a/docs/content/guide/forms.ngdoc b/docs/content/guide/forms.ngdoc index f3f95b7c81d7..ae4bacd3b5ed 100644 --- a/docs/content/guide/forms.ngdoc +++ b/docs/content/guide/forms.ngdoc @@ -116,7 +116,7 @@ This ensures that the user is not distracted with an error until after interacti A form is an instance of {@link api/ng.directive:form.FormController FormController}. The form instance can optionally be published into the scope using the `name` attribute. Similarly, control is an instance of {@link api/ng.directive:ngModel.NgModelController NgModelController}. -The control instance can similarly be published into the form instance using the `name` attribute. +The control instance can similarly be published into the form instance using the `name` attribute (the control instance must use the `ngModel` directive). This implies that the internal state of both the form and the control is available for binding in the view using the standard binding primitives. This allows us to extend the above example with these features: