Skip to content

Commit

Permalink
Fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
quinmars committed Jul 8, 2018
1 parent 4a49a97 commit f91f449
Showing 1 changed file with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,7 @@ public void Run()
{
//
// We never allow the scheduled work to be cancelled. Instead, the _disposed flag
// is used to have LoopRec bail out and perform proper clean-up of the
// enumerator.
// is used to have PrependValues() bail out.
//
_scheduler.Schedule(this, (innerScheduler, @this) => @this.PrependValues(innerScheduler));
}
Expand All @@ -242,8 +241,7 @@ public override void OnCompleted()
_appendArray = _appends.ToReverseArray();
//
// We never allow the scheduled work to be cancelled. Instead, the _disposed flag
// is used to have LoopRec bail out and perform proper clean-up of the
// enumerator.
// is used to have `AppendValues` bail out.
//
_scheduler.Schedule(this, (innerScheduler, @this) => @this.AppendValues(innerScheduler));
}
Expand Down Expand Up @@ -278,8 +276,7 @@ private IDisposable PrependValues(IScheduler scheduler)
{
//
// We never allow the scheduled work to be cancelled. Instead, the _disposed flag
// is used to have LoopRec bail out and perform proper clean-up of the
// enumerator.
// is used to have PrependValues() bail out.
//
scheduler.Schedule(this, (innerScheduler, @this) => @this.PrependValues(innerScheduler));
}
Expand Down Expand Up @@ -307,8 +304,7 @@ private IDisposable AppendValues(IScheduler scheduler)
{
//
// We never allow the scheduled work to be cancelled. Instead, the _disposed flag
// is used to have LoopRec bail out and perform proper clean-up of the
// enumerator.
// is used to have AppendValues() bail out.
//
scheduler.Schedule(this, (innerScheduler, @this) => @this.AppendValues(innerScheduler));
}
Expand Down

0 comments on commit f91f449

Please sign in to comment.