Skip to content

Commit

Permalink
change see alo paths to relative
Browse files Browse the repository at this point in the history
  • Loading branch information
mo-ba committed Sep 6, 2023
1 parent c239328 commit 5ece65e
Show file tree
Hide file tree
Showing 29 changed files with 120 additions and 120 deletions.
6 changes: 3 additions & 3 deletions docs/src/pages/en/array/operator/allCombinations.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ allCombinations([1, 2], ['a', 'b', 'c'], [4, 5]); // ->

## See Also

- [allPairs](/core/en/array/operator/allPairs)
- [interleave](/core/en/array/operator/interleave)
- [zip](/core/en/array/operator/zip)
- [allPairs](./allPairs)
- [interleave](./interleave)
- [zip](./zip)
4 changes: 2 additions & 2 deletions docs/src/pages/en/array/operator/allPairs.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ allPairs([1, 2, 3])(['a', 'b', 'c']); // ->

## See Also

- [allCombinations](/core/en/array/operator/allCombinations)
- [zip](/core/en/array/operator/zip)
- [allCombinations](./allCombinations)
- [zip](./zip)
4 changes: 2 additions & 2 deletions docs/src/pages/en/array/operator/chunkBySize.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ chunkBySize(array)// -> [[0, 1, 2], [3, 4, 5], [6],]]

## See Also

- [partition](/core/en/array/operator/partition)
- [splitInto](/core/en/array/operator/splitInto)
- [partition](./partition)
- [splitInto](./splitInto)
2 changes: 1 addition & 1 deletion docs/src/pages/en/array/operator/collect.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ collect(gen) // -> [1, 2, 2, 3, 3, 4];

## See Also

- [map](/core/en/array/operator/map)
- [map](./map)
6 changes: 3 additions & 3 deletions docs/src/pages/en/array/operator/filter.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ isEven(array) // -> [0, 2]
```

## See Also
- [skipWhile](/core/en/array/operator/skipWhile)
- [takeWhile](/core/en/array/operator/takeWhile)
- [partition](/core/en/array/operator/partition)
- [skipWhile](./skipWhile)
- [takeWhile](./takeWhile)
- [partition](./partition)
14 changes: 7 additions & 7 deletions docs/src/pages/en/array/operator/find.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ findEven(array) // -> 2

## See Also

- [findBack](/core/en/array/operator/findBack)
- [findIndex](/core/en/array/operator/findIndex)
- [findIndexBack](/core/en/array/operator/findIndexBack)
- [tryFind](/core/en/array/operator/tryFind)
- [tryFindBack](/core/en/array/operator/tryFindBack)
- [tryFindIndex](/core/en/array/operator/tryFindIndex)
- [tryFindIndexBack](/core/en/array/operator/tryFindIndexBack)
- [findBack](./findBack)
- [findIndex](./findIndex)
- [findIndexBack](./findIndexBack)
- [tryFind](./tryFind)
- [tryFindBack](./tryFindBack)
- [tryFindIndex](./tryFindIndex)
- [tryFindIndexBack](./tryFindIndexBack)
14 changes: 7 additions & 7 deletions docs/src/pages/en/array/operator/findBack.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ const lastEven = findBack(isEven)(array);
```

## See Also
- [find](/core/en/array/operator/find)
- [findIndex](/core/en/array/operator/findIndex)
- [findIndexBack](/core/en/array/operator/findIndexBack)
- [tryFind](/core/en/array/operator/tryFind)
- [tryFindBack](/core/en/array/operator/tryFindBack)
- [tryFindIndex](/core/en/array/operator/tryFindIndex)
- [tryFindIndexBack](/core/en/array/operator/tryFindIndexBack)
- [find](./find)
- [findIndex](./findIndex)
- [findIndexBack](./findIndexBack)
- [tryFind](./tryFind)
- [tryFindBack](./tryFindBack)
- [tryFindIndex](./tryFindIndex)
- [tryFindIndexBack](./tryFindIndexBack)
14 changes: 7 additions & 7 deletions docs/src/pages/en/array/operator/findIndex.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ findEven(array) // -> 1

## See Also

- [find](/core/en/array/operator/find)
- [findBack](/core/en/array/operator/findBack)
- [findIndexBack](/core/en/array/operator/findIndexBack)
- [tryFind](/core/en/array/operator/tryFind)
- [tryFindBack](/core/en/array/operator/tryFindBack)
- [tryFindIndex](/core/en/array/operator/tryFindIndex)
- [tryFindIndexBack](/core/en/array/operator/tryFindIndexBack)
- [find](./find)
- [findBack](./findBack)
- [findIndexBack](./findIndexBack)
- [tryFind](./tryFind)
- [tryFindBack](./tryFindBack)
- [tryFindIndex](./tryFindIndex)
- [tryFindIndexBack](./tryFindIndexBack)
14 changes: 7 additions & 7 deletions docs/src/pages/en/array/operator/findIndexBack.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ const lastEven = findIndexBack(isEven)(array);
```

## See Also
- [find](/core/en/array/operator/find)
- [findBack](/core/en/array/operator/findBack)
- [findIndex](/core/en/array/operator/findIndex)
- [tryFind](/core/en/array/operator/tryFind)
- [tryFindBack](/core/en/array/operator/tryFindBack)
- [tryFindIndex](/core/en/array/operator/tryFindIndex)
- [tryFindIndexBack](/core/en/array/operator/tryFindIndexBack)
- [find](./find)
- [findBack](./findBack)
- [findIndex](./findIndex)
- [tryFind](./tryFind)
- [tryFindBack](./tryFindBack)
- [tryFindIndex](./tryFindIndex)
- [tryFindIndexBack](./tryFindIndexBack)
2 changes: 1 addition & 1 deletion docs/src/pages/en/array/operator/fold.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ fold(array) // -> 15


## See Also
- [reduce](/core/en/array/operator/reduce)
- [reduce](./reduce)
6 changes: 3 additions & 3 deletions docs/src/pages/en/array/operator/head.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ head(array) // -> 2

## See Also

- [tail](/core/en/array/operator/tail)
- [init](/core/en/array/operator/init)
- [last](/core/en/array/operator/last)
- [tail](./tail)
- [init](./init)
- [last](./last)

```
| head | tail |
Expand Down
6 changes: 3 additions & 3 deletions docs/src/pages/en/array/operator/init.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ init([1, 2, 3, 4]) // -> [1, 2, 3]

## See Also

- [head](/core/en/array/operator/head)
- [tail](/core/en/array/operator/tail)
- [last](/core/en/array/operator/last)
- [head](./head)
- [tail](./tail)
- [last](./last)

```
| head | tail |
Expand Down
8 changes: 4 additions & 4 deletions docs/src/pages/en/array/operator/interleave.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ console.log(result);


## See Also
- [allCombinations](/core/en/array/operator/allCombinations)
- [allPairs](/core/en/array/operator/allPairs)
- [interleave](/core/en/array/operator/interleave)
- [zip](/core/en/array/operator/zip)
- [allCombinations](./allCombinations)
- [allPairs](./allPairs)
- [interleave](./interleave)
- [zip](./zip)
6 changes: 3 additions & 3 deletions docs/src/pages/en/array/operator/last.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ last(array) // -> 4
```

## See Also
- [head](/core/en/array/operator/head)
- [tail](/core/en/array/operator/tail)
- [init](/core/en/array/operator/init)
- [head](./head)
- [tail](./tail)
- [init](./init)

```
| head | tail |
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/en/array/operator/map.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ plusOne(array) // -> [2, 3, 4]
```

## See Also
- [collect](/core/en/array/operator/collect)
- [collect](./collect)
6 changes: 3 additions & 3 deletions docs/src/pages/en/array/operator/partition.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@ console.log(result);

## See Also

- [chunkBySize](/core/en/array/operator/chunkBySize)
- [filter](/core/en/array/operator/filter)
- [splitInto](/core/en/array/operator/splitInto)
- [chunkBySize](./chunkBySize)
- [filter](./filter)
- [splitInto](./splitInto)
2 changes: 1 addition & 1 deletion docs/src/pages/en/array/operator/reduce.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ reduce(array) // -> 10


## See Also
- [fold](/core/en/array/operator/fold)
- [fold](./fold)
10 changes: 5 additions & 5 deletions docs/src/pages/en/array/operator/skip.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ console.log(result);
```

## See Also
- [skipWhile](/core/en/array/operator/skipWhile)
- [take](/core/en/array/operator/take)
- [takeWhile](/core/en/array/operator/takeWhile)
- [truncate](/core/en/array/operator/truncate)
- [filter](/core/en/array/operator/filter)
- [skipWhile](./skipWhile)
- [take](./take)
- [takeWhile](./takeWhile)
- [truncate](./truncate)
- [filter](./filter)
10 changes: 5 additions & 5 deletions docs/src/pages/en/array/operator/skipWhile.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ console.log(result);
```

## See Also
- [skip](/core/en/array/operator/skip)
- [take](/core/en/array/operator/take)
- [takeWhile](/core/en/array/operator/takeWhile)
- [truncate](/core/en/array/operator/truncate)
- [filter](/core/en/array/operator/filter)
- [skip](./skip)
- [take](./take)
- [takeWhile](./takeWhile)
- [truncate](./truncate)
- [filter](./filter)
4 changes: 2 additions & 2 deletions docs/src/pages/en/array/operator/splitInto.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ splitInto(array)// -> [[1, 2, 3], [4, 5], [6, 7]]

## See Also

- [chunkBySize](/core/en/array/operator/chunkBySize)
- [partition](/core/en/array/operator/partition)
- [chunkBySize](./chunkBySize)
- [partition](./partition)
6 changes: 3 additions & 3 deletions docs/src/pages/en/array/operator/tail.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ tail([1, 2, 3, 4]) // -> [2, 3, 4]
```

## See Also
- [head](/core/en/array/operator/head)
- [init](/core/en/array/operator/init)
- [last](/core/en/array/operator/last)
- [head](./head)
- [init](./init)
- [last](./last)

```
| head | tail |
Expand Down
10 changes: 5 additions & 5 deletions docs/src/pages/en/array/operator/take.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ console.log(result);
```

## See Also
- [skip](/core/en/array/operator/skip)
- [skipWhile](/core/en/array/operator/skipWhile)
- [takeWhile](/core/en/array/operator/takeWhile)
- [truncate](/core/en/array/operator/truncate)
- [filter](/core/en/array/operator/filter)
- [skip](./skip)
- [skipWhile](./skipWhile)
- [takeWhile](./takeWhile)
- [truncate](./truncate)
- [filter](./filter)
10 changes: 5 additions & 5 deletions docs/src/pages/en/array/operator/takeWhile.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ console.log(result);
```

## See Also
- [skip](/core/en/array/operator/skip)
- [skipWhile](/core/en/array/operator/skipWhile)
- [take](/core/en/array/operator/take)
- [truncate](/core/en/array/operator/truncate)
- [filter](/core/en/array/operator/filter)
- [skip](./skip)
- [skipWhile](./skipWhile)
- [take](./take)
- [truncate](./truncate)
- [filter](./filter)
10 changes: 5 additions & 5 deletions docs/src/pages/en/array/operator/truncate.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ console.log(result);
```

## See Also
- [skip](/core/en/array/operator/skip)
- [skipWhile](/core/en/array/operator/skipWhile)
- [take](/core/en/array/operator/take)
- [takeWhile](/core/en/array/operator/takeWhile)
- [filter](/core/en/array/operator/filter)
- [skip](./skip)
- [skipWhile](./skipWhile)
- [take](./take)
- [takeWhile](./takeWhile)
- [filter](./filter)
14 changes: 7 additions & 7 deletions docs/src/pages/en/array/operator/tryFind.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ findEven(array) // -> Some(2)

## See Also

- [find](/core/en/array/operator/find)
- [findBack](/core/en/array/operator/findBack)
- [findIndex](/core/en/array/operator/findIndex)
- [findIndexBack](/core/en/array/operator/findIndexBack)
- [tryFindBack](/core/en/array/operator/tryFindBack)
- [tryFindIndex](/core/en/array/operator/tryFindIndex)
- [tryFindIndexBack](/core/en/array/operator/tryFindIndexBack)
- [find](./find)
- [findBack](./findBack)
- [findIndex](./findIndex)
- [findIndexBack](./findIndexBack)
- [tryFindBack](./tryFindBack)
- [tryFindIndex](./tryFindIndex)
- [tryFindIndexBack](./tryFindIndexBack)
14 changes: 7 additions & 7 deletions docs/src/pages/en/array/operator/tryFindBack.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ findEven(array) // -> Some(4)

## See Also

- [find](/core/en/array/operator/find)
- [findBack](/core/en/array/operator/findBack)
- [findIndex](/core/en/array/operator/findIndex)
- [findIndexBack](/core/en/array/operator/findIndexBack)
- [tryFind](/core/en/array/operator/tryFind)
- [tryFindIndex](/core/en/array/operator/tryFindIndex)
- [tryFindIndexBack](/core/en/array/operator/tryFindIndexBack)
- [find](./find)
- [findBack](./findBack)
- [findIndex](./findIndex)
- [findIndexBack](./findIndexBack)
- [tryFind](./tryFind)
- [tryFindIndex](./tryFindIndex)
- [tryFindIndexBack](./tryFindIndexBack)
14 changes: 7 additions & 7 deletions docs/src/pages/en/array/operator/tryFindIndex.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ findEven(array) // -> Some(1)

## See Also

- [find](/core/en/array/operator/find)
- [findBack](/core/en/array/operator/findBack)
- [findIndex](/core/en/array/operator/findIndex)
- [findIndexBack](/core/en/array/operator/findIndexBack)
- [tryFind](/core/en/array/operator/tryFind)
- [tryFindBack](/core/en/array/operator/tryFindBack)
- [tryFindIndexBack](/core/en/array/operator/tryFindIndexBack)
- [find](./find)
- [findBack](./findBack)
- [findIndex](./findIndex)
- [findIndexBack](./findIndexBack)
- [tryFind](./tryFind)
- [tryFindBack](./tryFindBack)
- [tryFindIndexBack](./tryFindIndexBack)
14 changes: 7 additions & 7 deletions docs/src/pages/en/array/operator/tryFindIndexBack.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ findEven(array) // -> Some(3)

## See Also

- [find](/core/en/array/operator/find)
- [findBack](/core/en/array/operator/findBack)
- [findIndex](/core/en/array/operator/findIndex)
- [findIndexBack](/core/en/array/operator/findIndexBack)
- [tryFind](/core/en/array/operator/tryFind)
- [tryFindBack](/core/en/array/operator/tryFindBack)
- [tryFindIndex](/core/en/array/operator/tryFindIndex)
- [find](./find)
- [findBack](./findBack)
- [findIndex](./findIndex)
- [findIndexBack](./findIndexBack)
- [tryFind](./tryFind)
- [tryFindBack](./tryFindBack)
- [tryFindIndex](./tryFindIndex)
8 changes: 4 additions & 4 deletions docs/src/pages/en/array/operator/zip.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ console.log(result);
```

## See Also
- [allCombinations](/core/en/array/operator/allCombinations)
- [allPairs](/core/en/array/operator/allPairs)
- [interleave](/core/en/array/operator/interleave)
- [zip3](/core/en/array/operator/zip3)
- [allCombinations](./allCombinations)
- [allPairs](./allPairs)
- [interleave](./interleave)
- [zip3](./zip3)

0 comments on commit 5ece65e

Please sign in to comment.