Skip to content

Commit

Permalink
Add missing space in PeriodicTimer.cs (#97658)
Browse files Browse the repository at this point in the history
  • Loading branch information
joegoldman2 authored Jan 29, 2024
1 parent 9025846 commit 5acfe60
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ bool IValueTaskSource<bool>.GetResult(short token)
// there should be no race conditions accessing it, as concurrent consumption is invalid. If there
// is invalid usage, with GetResult used erroneously/concurrently, the worst that happens is cancellation
// may not take effect for the in-flight operation, with its registration erroneously disposed.
// Note we use Dispose rather than Unregister (which wouldn't risk deadlock) so that we know that thecancellation callback associated with this operation
// Note we use Dispose rather than Unregister (which wouldn't risk deadlock) so that we know that the cancellation callback associated with this operation
// won't potentially still fire after we've completed this GetResult and a new operation
// has potentially started.
_ctr.Dispose();
Expand Down

0 comments on commit 5acfe60

Please sign in to comment.