aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Blomskøld2013-05-18 15:47:55 +0200
committerPete Bacon Darwin2013-05-18 21:18:15 +0100
commit86cbdb893aa9a0c87ad3463258a828c0d46a3b82 (patch)
treee41d3bcc6069ee55d647222de523c648be96d67d
parent11ee680d384f0bbd7329952ff387448c38196bb0 (diff)
downloadangular.js-86cbdb893aa9a0c87ad3463258a828c0d46a3b82.tar.bz2
doc(ngModel): $setViewValue calls all parsers, not formatters
-rw-r--r--src/ng/directive/input.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ng/directive/input.js b/src/ng/directive/input.js
index 8b6b4dc9..b892e8c9 100644
--- a/src/ng/directive/input.js
+++ b/src/ng/directive/input.js
@@ -985,7 +985,7 @@ var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$
* For example {@link ng.directive:input input} or
* {@link ng.directive:select select} directives call it.
*
- * It internally calls all `formatters` and if resulted value is valid, updates the model and
+ * It internally calls all `parsers` and if resulted value is valid, updates the model and
* calls all registered change listeners.
*
* @param {string} value Value from the view.