diff options
| author | rodyhaddad | 2013-09-08 17:24:13 -0400 | 
|---|---|---|
| committer | Pete Bacon Darwin | 2013-09-11 13:28:17 +0100 | 
| commit | 573d41b73cf67b59b2c9f84ace7f9491793fa179 (patch) | |
| tree | 73105b78d14d6c2289d206621e337930eb55dc2b /src/ng/directive/input.js | |
| parent | d8987c170f98650baecae66ccc272bdbca352f64 (diff) | |
| download | angular.js-573d41b73cf67b59b2c9f84ace7f9491793fa179.tar.bz2 | |
docs(ngChange): remove wrong @restrict and add missing @param
Diffstat (limited to 'src/ng/directive/input.js')
| -rw-r--r-- | src/ng/directive/input.js | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/src/ng/directive/input.js b/src/ng/directive/input.js index 6f3919df..fb250492 100644 --- a/src/ng/directive/input.js +++ b/src/ng/directive/input.js @@ -1165,7 +1165,6 @@ var ngModelDirective = function() {  /**   * @ngdoc directive   * @name ng.directive:ngChange - * @restrict E   *   * @description   * Evaluate given expression when user changes the input. @@ -1174,6 +1173,8 @@ var ngModelDirective = function() {   * Note, this directive requires `ngModel` to be present.   *   * @element input + * @param {expression} ngChange {@link guide/expression Expression} to evaluate upon change + * in input value.   *   * @example   * <doc:example> | 
