From 685c8b020c4b2c98a33ab7057436724c46c5fc1f Mon Sep 17 00:00:00 2001 From: Eduardo Velarde Date: Thu, 3 Jul 2025 17:51:32 -0700 Subject: [PATCH] Dummy commit --- .../src/System/Threading/SemaphoreSlim.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.Private.CoreLib/src/System/Threading/SemaphoreSlim.cs b/src/libraries/System.Private.CoreLib/src/System/Threading/SemaphoreSlim.cs index bab6bbd332b19a..ac073b61493d96 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Threading/SemaphoreSlim.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Threading/SemaphoreSlim.cs @@ -30,7 +30,7 @@ public class SemaphoreSlim : IDisposable // The semaphore count, initialized in the constructor to the initial value, every release call increments it // and every wait call decrements it as long as its value is positive otherwise the wait will block. - // Its value must be between the maximum semaphore value and zero + // Its value must be between the maximum semaphore value and zero. private volatile int m_currentCount; // The maximum semaphore value, it is initialized to Int.MaxValue if the client didn't specify it. it is used