Skip to content

Commit

Permalink
Merge pull request #24 from inato/add-do-notation-documentation-link-…
Browse files Browse the repository at this point in the history
…in-details

Add Do notation documentation link in details
  • Loading branch information
vinassefranche authored Jul 20, 2023
2 parents 02f102e + 1487ec9 commit f73c697
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Details.md
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ You need to adapt some methods to be able to properly use the `Reader` pattern,

### <a name="call-in-parallel"></a> Call in parallel

At some point, you might need to call methods in parallel, for instance because you need to send data to multiple external services and you don't want to decrease the performance of your use case. Here is an example that shows you how to call two `ReaderTaskEither` in parallel :
At some point, you might need to call methods in parallel, for instance because you need to send data to multiple external services and you don't want to decrease the performance of your use case. The Do notation can help you for this ([here's the official documentation](https://gcanti.github.io/fp-ts/guides/do-notation.html) if you want more details). Below is an example that shows you how to call two `ReaderTaskEither` in parallel :

```typescript
import { ReaderTaskEither } from "fp-ts/ReaderTaskEither";
Expand Down

0 comments on commit f73c697

Please sign in to comment.