We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d04394d commit 4138305Copy full SHA for 4138305
README.md
@@ -31,7 +31,7 @@ using CancellationTokenSource cts = new CancellationTokenSource(TimeSpan.FromSec
31
//acquire writer lock
32
using var d2 = await asyncLock.WriterLockAsync("123", cts.Token);
33
34
-//use writer lock scope to break long running reader lock
+//use writer lock scope to interrupt long running reader lock
35
using (ReaderReleaser r1 = await asyncLock.ReaderLockAsync())
36
{
37
//use reader lock
0 commit comments