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

Commit 0c922c2

Browse files
rafaelss95fknop
authored andcommitted
fix(docs): Fix links in docs (#50)
1 parent 616e94f commit 0c922c2

File tree

5 files changed

+103
-103
lines changed

5 files changed

+103
-103
lines changed

docs/aggregate.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

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

11-
####groupBy
11+
#### groupBy
1212

1313
Returns the groupped data of the given array.
1414

@@ -40,7 +40,7 @@ const values = [
4040
```
4141

4242

43-
####min
43+
#### min
4444

4545
Returns the minimum of the given array.
4646

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

5959

60-
####max
60+
#### max
6161

6262
Returns the maximum of the given array.
6363

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

7676

77-
####mean
77+
#### mean
7878

7979
Returns the mean of the given array.
8080

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

93-
####sum
93+
#### sum
9494

9595
Returns the sum of the given array.
9696

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

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

0 commit comments

Comments
 (0)