From a65ec81e894ddbf43ae3f6b7aeeb152d3197d081 Mon Sep 17 00:00:00 2001 From: Anthony Zotti Date: Sat, 7 Mar 2015 08:19:41 -0800 Subject: [PATCH] docs(form): Add comma to line 319 for readability Line 319 is hard to read on the first glimpse. Currently the sentence reads: "In Angular forms can be nested" The sentence should read either "In Angular, forms can be nested" or "Forms can be nested in angular" I changed it to the former in this pull request. --- src/ng/directive/form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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