From 102cccf2ca64b577822efb4e043b4887aa727e31 Mon Sep 17 00:00:00 2001 From: yarsh Date: Wed, 5 Nov 2014 22:20:59 +0200 Subject: [PATCH] docs(ngModelOptions): minor grammer error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On https://docs.angularjs.org/api/ng/directive/ngModelOptions, in Arguments block, in description of updateOn, it says “specifying which event should be the input bound to.” and should be “specifying which event should be the input be bound to.”. --- src/ng/directive/input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/directive/input.js b/src/ng/directive/input.js index 639afcb9dfcb..d662c5b22f1c 100644 --- a/src/ng/directive/input.js +++ b/src/ng/directive/input.js @@ -2868,7 +2868,7 @@ var ngValueDirective = function() { * `ngModelOptions` has an effect on the element it's declared on and its descendants. * * @param {Object} ngModelOptions options to apply to the current model. Valid keys are: - * - `updateOn`: string specifying which event should be the input bound to. You can set several + * - `updateOn`: string specifying which event should the input be bound to. You can set several * events using an space delimited list. There is a special event called `default` that * matches the default events belonging of the control. * - `debounce`: integer value which contains the debounce model update value in milliseconds. A