Skip to content

Commit

Permalink
docs: fix broken links in lazy evaluation docs (#269)
Browse files Browse the repository at this point in the history
  • Loading branch information
witch-factory authored Apr 25, 2024
1 parent 3b30cfb commit 1beafcb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/docs_md/lazy-evaluation.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ pipe(
Combinations of `Lazy` functions don't evaluate actual values like [generator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Generator).
It can be evaluated with a [for-of](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for...of) or
[await for-of](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for-await...of),
`Strict` functions. `Strict` functions can be found [here](https://fxts.dev/docs/index#strict)
`Strict` functions. `Strict` functions can be found [here](https://fxts.dev/docs#strict)

```typescript
const squareNums = pipe(
Expand All @@ -93,7 +93,7 @@ const result = pipe(
);
```

Lazy functions can be found [here](https://fxts.dev/docs/index#lazy)
Lazy functions can be found [here](https://fxts.dev/docs#lazy)

### Useful Example

Expand Down

0 comments on commit 1beafcb

Please sign in to comment.