From b81dea5f757779d3866eb386054220377f50a640 Mon Sep 17 00:00:00 2001 From: Eirik Tsarpalis Date: Fri, 18 Dec 2015 00:26:30 +0200 Subject: [PATCH] fix parameter names in Async.Parallel & Async.Choice. --- src/fsharp/FSharp.Core/control.fsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fsharp/FSharp.Core/control.fsi b/src/fsharp/FSharp.Core/control.fsi index 54779a732c0..bbefd2623d6 100644 --- a/src/fsharp/FSharp.Core/control.fsi +++ b/src/fsharp/FSharp.Core/control.fsi @@ -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. - /// A sequence of distinct computations to be parallelized. + /// A sequence of distinct computations to be parallelized. /// A computation that returns an array of values from the sequence of input computations. static member Parallel : computations:seq> -> Async<'T[]> @@ -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. - /// A sequence of computations to be parallelized. + /// A sequence of computations to be parallelized. /// A computation that returns the first succeeding computation in the sequence of input computations. static member Choice : computations:seq> -> Async<'T option>