Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing space in PeriodicTimer.cs #97658

Merged
merged 1 commit into from
Jan 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading