aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/directive/input.js
diff options
context:
space:
mode:
authorleesei2013-04-19 00:20:26 +0800
committerPete Bacon Darwin2013-04-19 13:43:09 +0100
commit120b9190ea7b89eb0bcf2c0a63c08e8d75b0f657 (patch)
tree5578b40b9441b2b0d4dc92b69ceaaf30aa52e838 /src/ng/directive/input.js
parentf77b906d670b27acf4fb0deedb5580493fa212e9 (diff)
downloadangular.js-120b9190ea7b89eb0bcf2c0a63c08e8d75b0f657.tar.bz2
docs(input): fix typo on max attribute
Diffstat (limited to 'src/ng/directive/input.js')
-rw-r--r--src/ng/directive/input.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ng/directive/input.js b/src/ng/directive/input.js
index db594ebe..8ab6f696 100644
--- a/src/ng/directive/input.js
+++ b/src/ng/directive/input.js
@@ -93,8 +93,8 @@ var inputType = {
*
* @param {string} ngModel Assignable angular expression to data-bind to.
* @param {string=} name Property name of the form under which the control is published.
- * @param {string=} min Sets the `min` validation error key if the value entered is less then `min`.
- * @param {string=} max Sets the `max` validation error key if the value entered is greater then `min`.
+ * @param {string=} min Sets the `min` validation error key if the value entered is less than `min`.
+ * @param {string=} max Sets the `max` validation error key if the value entered is greater than `max`.
* @param {string=} required Sets `required` validation error key if the value is not entered.
* @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to
* the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of