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

Commit de84b99

Browse files
Correct type used in constructor.
1 parent 18ff2b0 commit de84b99

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)