Skip to content

Commit

Permalink
Resolve appveyor CI of "unexpected trailing whitespace"
Browse files Browse the repository at this point in the history
  • Loading branch information
moh-hassan committed Nov 17, 2019
1 parent 520747c commit 853e288
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions MoreLinq/Reactive/Subject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public sealed class Subject<T> : IObservable<T>, IObserver<T>
bool IsMuted => _completed || _error != null;

/// <summary>
///
/// Notifies the provider that an observer is to receive notifications.
/// </summary>
/// <param name="observer"></param>
/// <returns></returns>
Expand Down Expand Up @@ -128,14 +128,14 @@ public void OnNext(T value)
}

/// <summary>
///
/// Action for Exception handling
/// </summary>
/// <param name="error"></param>
public void OnError(Exception error) =>
OnFinality(ref _error, error, (observer, err) => observer.OnError(err));

/// <summary>
///
/// Action
/// </summary>
public void OnCompleted() =>
OnFinality(ref _completed, true, (observer, _) => observer.OnCompleted());
Expand Down

0 comments on commit 853e288

Please sign in to comment.