Skip to content

Commit d8d4587

Browse files
committed
fix(README): flatten, fuzzy search
1 parent bd5c395 commit d8d4587

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ lol
324324
```
325325
###flatten
326326
Flattens a nested array (the nesting can be to any depth).<br/>
327-
If you pass shallow, the array will only be flattened a single level
327+
If you pass shallow, the array will only be flattened a single level<br/>
328328
**Usage:** ```collection | flatten: shallow[optional]```
329329
```js
330330
$scope.weirdArray = [[], 1, 2, 3, [4, 5, 6, [7, 8, 9, [10, 11, [12, [[[[[13], [[[[14, 15]]]]]]]]]]]]];
@@ -340,7 +340,7 @@ $scope.weirdArray = [[], 1, 2, 3, [4, 5, 6, [7, 8, 9, [10, 11, [12, [[[[[13], [[
340340
###fuzzy
341341
fuzzy string searching(approximate string matching). [Read more](http://en.wikipedia.org/wiki/Approximate_string_matching)<br/>
342342
**note:** use fuzzyBy to filter by one property to improve performance<br/>
343-
usage: ```collection | fuzzy: search: caseSensitive[optional]```
343+
**Usage:** ```collection | fuzzy: search: caseSensitive[optional]```
344344
```js
345345
$scope.books = [
346346
{ title: 'The DaVinci Code', author: 'F. Scott Fitzgerald' },

0 commit comments

Comments
 (0)