aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJoakim Blomskøld2013-05-18 15:47:55 +0200
committerPete Bacon Darwin2013-05-18 21:17:51 +0100
commit782a82d461bd10a8afe11aa7c37f166628b99839 (patch)
tree58c4ae5ba44817631968850e66133ddf6bc6940c /src
parent2ab4fde8172ab4a98bbaa69baf55358dedb050b9 (diff)
downloadangular.js-782a82d461bd10a8afe11aa7c37f166628b99839.tar.bz2
doc(ngModel): $setViewValue calls all parsers, not formatters
Diffstat (limited to 'src')
-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 1a13a0d5..0cd2a9b0 100644
--- a/src/ng/directive/input.js
+++ b/src/ng/directive/input.js
@@ -1018,7 +1018,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.