Skip to content
Merged
Prev Previous commit
Next Next commit
Update Mutex.xml (#4553)
maybe it's a typo
  • Loading branch information
hecongy authored Aug 3, 2020
commit 5d7d1b90e9996c29113b67b16150f1a00ea18a39
2 changes: 1 addition & 1 deletion xml/System.Threading/Mutex.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@


## Examples
This example shows how a local <xref:System.Threading.Mutex> 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 <xref:System.Threading.Mutex.ReleaseMutex%2A> method to release ownership of the thread.
This example shows how a local <xref:System.Threading.Mutex> 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 <xref:System.Threading.Mutex.ReleaseMutex%2A> 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)]
Expand Down