From eb3afebce1f371f0145f5cd9a596f34859890d8f Mon Sep 17 00:00:00 2001 From: joegoldman2 <147369450+joegoldman2@users.noreply.github.com> Date: Mon, 29 Jan 2024 19:51:40 +0200 Subject: [PATCH] Add missing space in PeriodicTimer.cs --- .../src/System/Threading/PeriodicTimer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.Private.CoreLib/src/System/Threading/PeriodicTimer.cs b/src/libraries/System.Private.CoreLib/src/System/Threading/PeriodicTimer.cs index b784d11935bec..8d101003de6ef 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Threading/PeriodicTimer.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Threading/PeriodicTimer.cs @@ -271,7 +271,7 @@ bool IValueTaskSource.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();