From ae92658ebfacf6d269b3671e896de92d4f89aaf6 Mon Sep 17 00:00:00 2001 From: Justin Walsh Date: Wed, 10 Sep 2014 15:37:33 +0200 Subject: [PATCH] docs(guide/forms): correct grammar --- docs/content/guide/forms.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guide/forms.ngdoc b/docs/content/guide/forms.ngdoc index 5272e799..8dd3080a 100644 --- a/docs/content/guide/forms.ngdoc +++ b/docs/content/guide/forms.ngdoc @@ -206,7 +206,7 @@ In the following example we create two directives. * The first one is `integer` and it validates whether the input is a valid integer. For example `1.23` is an invalid value, since it contains a fraction. Note that we unshift the array instead of pushing. - This is because we want to be first parser and consume the control string value, as we need to execute the validation function before a conversion to number occurs. + This is because we want it to be the first parser and consume the control string value, as we need to execute the validation function before a conversion to number occurs. * The second directive is a `smart-float`. It parses both `1.2` and `1,2` into a valid float number `1.2`.