From 98548ef09b2df5732ff4ad306d792c9e0c72946c Mon Sep 17 00:00:00 2001 From: charles <1632226164@qq.com> Date: Wed, 22 Jul 2020 10:18:42 +0800 Subject: [PATCH] Update Mutex.xml maybe it's a typo --- xml/System.Threading/Mutex.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xml/System.Threading/Mutex.xml b/xml/System.Threading/Mutex.xml index 4b06b4f9114..1f35d299848 100644 --- a/xml/System.Threading/Mutex.xml +++ b/xml/System.Threading/Mutex.xml @@ -81,7 +81,7 @@ ## Examples - This example shows how a local object is used to synchronize access to a protected resource. Because each calling thread is blocked until it acquires ownership of the mutex, it must call the method to release ownership of the thread. + This example shows how a local object is used to synchronize access to a protected resource. Because each calling thread is blocked until it acquires ownership of the mutex, it must call the method to release ownership of the mutex. [!code-csharp[System.Threading.Mutex.Class#1](~/samples/snippets/csharp/VS_Snippets_CLR_System/system.threading.mutex.class/cs/example1.cs#1)] [!code-vb[System.Threading.Mutex.Class#1](~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.threading.mutex.class/vb/example1.vb#1)]