Skip to content

Commit

Permalink
fix parameter names in Async.Parallel & Async.Choice.
Browse files Browse the repository at this point in the history
  • Loading branch information
eiriktsarpalis committed Dec 17, 2015
1 parent e758c51 commit b81dea5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fsharp/FSharp.Core/control.fsi
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ namespace Microsoft.FSharp.Control
/// The overall computation will respond to cancellation while executing the child computations.
/// If cancelled, the computation will cancel any remaining child computations but will still wait
/// for the other child computations to complete.</remarks>
/// <param name="computationList">A sequence of distinct computations to be parallelized.</param>
/// <param name="computations">A sequence of distinct computations to be parallelized.</param>
/// <returns>A computation that returns an array of values from the sequence of input computations.</returns>
static member Parallel : computations:seq<Async<'T>> -> Async<'T[]>

Expand All @@ -279,7 +279,7 @@ namespace Microsoft.FSharp.Control
/// The overall computation will respond to cancellation while executing the child computations.
/// If cancelled, the computation will cancel any remaining child computations but will still wait
/// for the other child computations to complete.</remarks>
/// <param name="computationList">A sequence of computations to be parallelized.</param>
/// <param name="computations">A sequence of computations to be parallelized.</param>
/// <returns>A computation that returns the first succeeding computation in the sequence of input computations.</returns>
static member Choice : computations:seq<Async<'T option>> -> Async<'T option>

Expand Down

0 comments on commit b81dea5

Please sign in to comment.