Skip to content

Commit

Permalink
Merge<T>(IEnumerable<Observable<T>> sources) -> Merge<T>(this IEnumer…
Browse files Browse the repository at this point in the history
…able<Observable<T>> sources)
  • Loading branch information
neuecc committed Feb 20, 2024
1 parent 88478ba commit 87796ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/R3/Factories/Merge.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public static Observable<T> Merge<T>(params Observable<T>[] sources)
return new Merge<T>(sources);
}

public static Observable<T> Merge<T>(IEnumerable<Observable<T>> sources)
public static Observable<T> Merge<T>(this IEnumerable<Observable<T>> sources)
{
return new Merge<T>(sources);
}
Expand Down

0 comments on commit 87796ff

Please sign in to comment.