From ec81a25b4a103494234f5e321a5726217d2bf501 Mon Sep 17 00:00:00 2001 From: Theodor Zoulias <48834899+theodorzoulias@users.noreply.github.com> Date: Sun, 27 Feb 2022 11:15:26 +0200 Subject: [PATCH] Update Observable.Single.cs Fixed a typo in the XML documentation of the RepeatWhen operator. --- Rx.NET/Source/src/System.Reactive/Linq/Observable.Single.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rx.NET/Source/src/System.Reactive/Linq/Observable.Single.cs b/Rx.NET/Source/src/System.Reactive/Linq/Observable.Single.cs index b76b9b772d..89747d85c3 100644 --- a/Rx.NET/Source/src/System.Reactive/Linq/Observable.Single.cs +++ b/Rx.NET/Source/src/System.Reactive/Linq/Observable.Single.cs @@ -566,7 +566,7 @@ public static IObservable Repeat(this IObservable sou /// The type of the elements in the source sequence. /// The arbitrary element type signaled by the handler observable. /// Observable sequence to keep repeating when it successfully terminates. - /// The function that is called for each observer and takes an observable sequence objects. + /// 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.