Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
style(filter): remove ws
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorMinar committed Feb 15, 2013
1 parent 3c2aee0 commit 1ace5eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ng/filter/filter.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -165,7 +165,7 @@ function filterFilter() {
default:
return false;
}
};
};
switch (typeof expression) {
case "boolean":
case "number":
Expand Down

0 comments on commit 1ace5eb

Please sign in to comment.