Skip to content

Commit b49a479

Browse files
committed
Fix AsyncQueryable.Zip.
1 parent 905f456 commit b49a479

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Ix.NET/Source/System.Linq.Async.Queryable/System/Linq/AsyncQueryable.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ private static MethodInfo Zip__TFirst_TSecond__2__0(Type TFirst, Type TSecond) =
4848
if (second == null)
4949
throw new ArgumentNullException(nameof(second));
5050

51-
return first.Provider.CreateQuery<(TFirst, TSecond)>(Expression.Call(s_Zip__TFirst_TSecond__2__0(typeof(TFirst), typeof(TSecond)), first.Expression, GetSourceExpression(second)));
51+
return first.Provider.CreateQuery<(TFirst, TSecond)>(Expression.Call(Zip__TFirst_TSecond__2__0(typeof(TFirst), typeof(TSecond)), first.Expression, GetSourceExpression(second)));
5252
}
5353
#endif
5454

0 commit comments

Comments
 (0)