Skip to content

Commit

Permalink
Update docs/fsharp-cheatsheet.md
Browse files Browse the repository at this point in the history
Co-authored-by: Ruben Bartelink <[email protected]>
  • Loading branch information
SpiralOSS and bartelink authored Jul 10, 2024
1 parent 09ac407 commit db96502
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/fsharp-cheatsheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@ The `Async` module has a number of functions to compose and start computations.
| Function | Description |
|-------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Async.Ignore | Creates an `Async<unit>` computation from an `Async<'T>` |
| Async.Parallel | Composes a new computation from multiple computations, `Async<'T> seq`, and runs them in parallel; it returns all the results in an array `Async<'T array>` |
| Async.Parallel | Composes a new computation from multiple computations, `Async<'T> seq`, and runs them in parallel; it returns all the results in an array `Async<'T[]>` |
| Async.Sequential | Composes a new computation from multiple computations, `Async<'T> seq`, and runs them in series; it returns all the results in an array `Async<'T[]>` |
| Async.Choice | Composes a new computation from multiple computations, `Async<'T option> seq`, and returns the first where `'T'` is `Some value` (all others running are canceled). If all computations return `None` then the result is `None` |

Expand Down

0 comments on commit db96502

Please sign in to comment.