diff --git a/src/ng/directive/form.js b/src/ng/directive/form.js index 958664bc6e12..12b844a5f712 100644 --- a/src/ng/directive/form.js +++ b/src/ng/directive/form.js @@ -316,7 +316,7 @@ function FormController(element, attrs, $scope, $animate, $interpolate) { * * # Alias: {@link ng.directive:ngForm `ngForm`} * - * In Angular forms can be nested. This means that the outer form is valid when all of the child + * In Angular, forms can be nested. This means that the outer form is valid when all of the child * forms are valid as well. However, browsers do not allow nesting of `
` elements, so * Angular provides the {@link ng.directive:ngForm `ngForm`} directive which behaves identically to * `` but can be nested. This allows you to have nested forms, which is very useful when