From 3fd2d2a64c7b4588b40be80c2d78d173fbdc9d39 Mon Sep 17 00:00:00 2001 From: moh-hassan Date: Sun, 17 Nov 2019 13:30:24 +0200 Subject: [PATCH] Resolve appveyor CI of "unexpected trailing whitespace" --- MoreLinq/Reactive/Subject.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MoreLinq/Reactive/Subject.cs b/MoreLinq/Reactive/Subject.cs index 53a369c19..bdbdcc7ea 100644 --- a/MoreLinq/Reactive/Subject.cs +++ b/MoreLinq/Reactive/Subject.cs @@ -37,7 +37,7 @@ public sealed class Subject : IObservable, IObserver bool IsMuted => _completed || _error != null; /// - /// + /// Notifies the provider that an observer is to receive notifications. /// /// /// @@ -88,7 +88,7 @@ public IDisposable Subscribe(IObserver observer) bool _shouldDeleteObserver; // delete (null) or remove an observer? /// - /// + /// Action OnNext /// /// public void OnNext(T value) @@ -128,14 +128,14 @@ public void OnNext(T value) } /// - /// + /// Action for Exception handling /// /// public void OnError(Exception error) => OnFinality(ref _error, error, (observer, err) => observer.OnError(err)); /// - /// + /// Action OnCompleted /// public void OnCompleted() => OnFinality(ref _completed, true, (observer, _) => observer.OnCompleted());