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