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

Commit 1ace5eb

Browse files
committed
style(filter): remove ws
1 parent 3c2aee0 commit 1ace5eb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ng/filter/filter.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@
3838
*
3939
* Can be one of:
4040
*
41-
* - `function(expected, actual)`:
41+
* - `function(expected, actual)`:
4242
* The function will be given the object value and the predicate value to compare and
4343
* should return true if the item should be included in filtered result.
4444
*
4545
* - `true`: A shorthand for `function(expected, actual) { return angular.equals(expected, actual)}`.
4646
* this is essentially strict comparison of expected and actual.
4747
*
48-
* - `false|undefined`: A short hand for a function which will look for a substring match in case
48+
* - `false|undefined`: A short hand for a function which will look for a substring match in case
4949
* insensitive way.
5050
*
5151
* @example
@@ -165,7 +165,7 @@ function filterFilter() {
165165
default:
166166
return false;
167167
}
168-
};
168+
};
169169
switch (typeof expression) {
170170
case "boolean":
171171
case "number":

0 commit comments

Comments
 (0)