Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Observable.Single.cs #1717

Merged
merged 1 commit into from
Apr 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ public static IObservable<TSource> Repeat<TSource>(this IObservable<TSource> sou
/// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
/// <typeparam name="TSignal">The arbitrary element type signaled by the handler observable.</typeparam>
/// <param name="source">Observable sequence to keep repeating when it successfully terminates.</param>
/// <param name="handler">The function that is called for each observer and takes an observable sequence objects.
/// <param name="handler">The function that is called for each observer and takes an observable sequence of objects.
/// It should return an observable of arbitrary items that should signal that arbitrary item in
/// response to receiving the completion signal from the source observable. If this observable signals
/// a terminal event, the sequence is terminated with that signal instead.</param>
Expand Down