diff --git a/src/fsharp/FSharp.Core/array.fsi b/src/fsharp/FSharp.Core/array.fsi index 714f253a052..ad9e82f27fb 100644 --- a/src/fsharp/FSharp.Core/array.fsi +++ b/src/fsharp/FSharp.Core/array.fsi @@ -12,7 +12,7 @@ namespace Microsoft.FSharp.Collections [] module Array = - /// Builds a new array that contains the cartesian product of the two input arrays. + /// Returns a new array that contains all pairings of elements from the first and second arrays. /// The first input array. /// The second input array. /// Thrown when either of the input arrays is null. diff --git a/src/fsharp/FSharp.Core/list.fsi b/src/fsharp/FSharp.Core/list.fsi index 5a2edea9711..d42186e73d9 100644 --- a/src/fsharp/FSharp.Core/list.fsi +++ b/src/fsharp/FSharp.Core/list.fsi @@ -12,7 +12,7 @@ namespace Microsoft.FSharp.Collections [] module List = - /// Returns a new list that contains the cartesian product of the two input lists. + /// Returns a new list that contains all pairings of elements from the first and second lists. /// The first input list. /// The second input list. /// The resulting list of pairs. diff --git a/src/fsharp/FSharp.Core/seq.fsi b/src/fsharp/FSharp.Core/seq.fsi index 016ef6373b7..045a22b84ab 100644 --- a/src/fsharp/FSharp.Core/seq.fsi +++ b/src/fsharp/FSharp.Core/seq.fsi @@ -14,7 +14,7 @@ namespace Microsoft.FSharp.Collections [] module Seq = - /// Returns a new sequence that contains the cartesian product of the two input sequences. + /// Returns a new sequence that contains all pairings of elements from the first and second sequences. /// The first sequence. /// The second sequence. /// The result sequence.