Skip to content

Commit

Permalink
Minor readme fix
Browse files Browse the repository at this point in the history
  • Loading branch information
madelson committed Apr 24, 2021
1 parent 3925748 commit a60febb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ DistributedLock is a .NET library that provides robust and easy-to-use distribut

With DistributedLock, synchronizing access to a region of code across multiple applications/machines is as simple as:
```C#
using (await myDistributedLock.AcquireAsync())
await using (await myDistributedLock.AcquireAsync())
{
// I hold the lock here
}
Expand Down

0 comments on commit a60febb

Please sign in to comment.