Skip to content

Commit a60febb

Browse files
committed
Minor readme fix
1 parent 3925748 commit a60febb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ DistributedLock is a .NET library that provides robust and easy-to-use distribut
44

55
With DistributedLock, synchronizing access to a region of code across multiple applications/machines is as simple as:
66
```C#
7-
using (await myDistributedLock.AcquireAsync())
7+
await using (await myDistributedLock.AcquireAsync())
88
{
99
// I hold the lock here
1010
}

0 commit comments

Comments
 (0)