Skip to content

Commit

Permalink
Merge pull request #43 from Megasware128/patch-1
Browse files Browse the repository at this point in the history
Fixed wrongly spelled word in AsyncSubscriber.cs
  • Loading branch information
marcpiechura authored Jun 29, 2017
2 parents bdb7903 + f448390 commit 237c517
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ private sealed class OnSubscribeSignal : ISignal
{
public OnSubscribeSignal(ISubscription subscription)
{
Subscritpion = subscription;
Subscription = subscription;
}

public ISubscription Subscritpion { get; }
public ISubscription Subscription { get; }
}


Expand Down Expand Up @@ -85,7 +85,7 @@ protected AsyncSubscriber()
var subscribe = signal as OnSubscribeSignal;
if (subscribe != null)
{
HandleOnSubscribe(subscribe.Subscritpion);
HandleOnSubscribe(subscribe.Subscription);
return;
}

Expand Down

2 comments on commit 237c517

@Petabridge-CI
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TeamCity Reactive.Streams :: Pull Requests (Windows) Build 77 is now running

@Petabridge-CI
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TeamCity Reactive.Streams :: Pull Requests (Windows) Build 77 outcome was SUCCESS
Summary: Running Build time: 00:01:18

Please sign in to comment.