Skip to content

Commit 510c328

Browse files
breyedbtford
authored andcommitted
docs(filter): description formatting fix
as it was, the third parameter's description was displayed as a code block, rather than a bulletted list.
1 parent d3163ff commit 510c328

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/ng/filter/filter.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@
3535
*
3636
* Can be one of:
3737
*
38-
* - `function(actual, expected)`:
39-
* The function will be given the object value and the predicate value to compare and
40-
* should return true if the item should be included in filtered result.
38+
* - `function(actual, expected)`:
39+
* The function will be given the object value and the predicate value to compare and
40+
* should return true if the item should be included in filtered result.
4141
*
42-
* - `true`: A shorthand for `function(actual, expected) { return angular.equals(expected, actual)}`.
43-
* this is essentially strict comparison of expected and actual.
42+
* - `true`: A shorthand for `function(actual, expected) { return angular.equals(expected, actual)}`.
43+
* this is essentially strict comparison of expected and actual.
4444
*
45-
* - `false|undefined`: A short hand for a function which will look for a substring match in case
46-
* insensitive way.
45+
* - `false|undefined`: A short hand for a function which will look for a substring match in case
46+
* insensitive way.
4747
*
4848
* @example
4949
<example>

0 commit comments

Comments
 (0)