Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit df7beee

Browse files
committed
Merge pull request #2330 from Clockwork-Muse/PLINQ_Zip
PLINQ - Correct type used in constructor.
2 parents e382c23 + de84b99 commit df7beee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/System.Linq.Parallel/src/System/Linq/Parallel/QueryOperators/Binary/ZipQueryOperator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ internal sealed class ZipQueryOperator<TLeftInput, TRightInput, TOutput>
4343
//
4444

4545
internal ZipQueryOperator(
46-
ParallelQuery<TLeftInput> leftChildSource, IEnumerable<TRightInput> rightChildSource,
46+
ParallelQuery<TLeftInput> leftChildSource, ParallelQuery<TRightInput> rightChildSource,
4747
Func<TLeftInput, TRightInput, TOutput> resultSelector)
4848
: this(
4949
QueryOperator<TLeftInput>.AsQueryOperator(leftChildSource),

0 commit comments

Comments
 (0)