Skip to content
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.

Commit

Permalink
fix(docs): Fix links in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelss95 committed Jun 8, 2017
1 parent 616e94f commit fb14a0f
Show file tree
Hide file tree
Showing 5 changed files with 103 additions and 103 deletions.
12 changes: 6 additions & 6 deletions docs/aggregate.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

You can check the module import [`here`](./modules.md).

####groupBy
#### groupBy

Returns the groupped data of the given array.

Expand Down Expand Up @@ -40,7 +40,7 @@ const values = [
```


####min
#### min

Returns the minimum of the given array.

Expand All @@ -57,7 +57,7 @@ import { MinPipe } from 'angular-pipes/src/aggregate/min.pipe';
```


####max
#### max

Returns the maximum of the given array.

Expand All @@ -74,7 +74,7 @@ import { MaxPipe } from 'angular-pipes/src/aggregate/max.pipe';
```


####mean
#### mean

Returns the mean of the given array.

Expand All @@ -90,7 +90,7 @@ import { MeanPipe } from 'angular-pipes/src/aggregate/mean.pipe';
{{ [5, 5, 1, 9] | mean }} <!-- 5 -->
```

####sum
#### sum

Returns the sum of the given array.

Expand All @@ -104,4 +104,4 @@ import { SumPipe } from 'angular-pipes/src/aggregate/sum.pipe';

```html
{{ [5, 5, 1, 9] | sum }} <!-- 20 -->
```
```

0 comments on commit fb14a0f

Please sign in to comment.