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

fix(docs): Fix links in docs #50

Merged
merged 1 commit into from
Jun 8, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 -->
```
```
Loading