diff --git a/snippets/csharp/System.Threading/SemaphoreSlim/Overview/example.cs b/snippets/csharp/System.Threading/SemaphoreSlim/Overview/example.cs index 76cc50540dc..d146d709fbc 100644 --- a/snippets/csharp/System.Threading/SemaphoreSlim/Overview/example.cs +++ b/snippets/csharp/System.Threading/SemaphoreSlim/Overview/example.cs @@ -73,7 +73,7 @@ public static void Main() // Task 4 releases the semaphore; previous count: 0. // Task 2 enters the semaphore. // Task 1 releases the semaphore; previous count: 0. -// Task 3 releases the semaphore; previous count: 0. +// Task 3 releases the semaphore; previous count: 1. // Task 5 enters the semaphore. // Task 2 releases the semaphore; previous count: 1. // Task 5 releases the semaphore; previous count: 2.