diff options
| author | Igor Minar | 2013-02-14 16:38:43 -0800 | 
|---|---|---|
| committer | Igor Minar | 2013-02-14 16:38:43 -0800 | 
| commit | 1ace5eb39632ae189fdabee176c6e918960d0578 (patch) | |
| tree | 7b65e90ba9e185279304154f802f634a35b3ea0c /src | |
| parent | 3c2aee01b0b299995eb92f4255159585b0f53c10 (diff) | |
| download | angular.js-1ace5eb39632ae189fdabee176c6e918960d0578.tar.bz2 | |
style(filter): remove ws
Diffstat (limited to 'src')
| -rw-r--r-- | src/ng/filter/filter.js | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ng/filter/filter.js b/src/ng/filter/filter.js index 8d02f763..95ccaf78 100644 --- a/src/ng/filter/filter.js +++ b/src/ng/filter/filter.js @@ -38,14 +38,14 @@   *   *   Can be one of:   * - *     - `function(expected, actual)`:   + *     - `function(expected, actual)`:   *       The function will be given the object value and the predicate value to compare and   *       should return true if the item should be included in filtered result.   *   *     - `true`: A shorthand for `function(expected, actual) { return angular.equals(expected, actual)}`.   *       this is essentially strict comparison of expected and actual.   * - *     - `false|undefined`: A short hand for a function which will look for a substring match in case  + *     - `false|undefined`: A short hand for a function which will look for a substring match in case   *       insensitive way.   *   * @example @@ -165,7 +165,7 @@ function filterFilter() {          default:            return false;        } -    };  +    };      switch (typeof expression) {        case "boolean":        case "number":  | 
