Skip to content

Commit

Permalink
Documentation indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkCiliaVincenti committed Jan 1, 2024
1 parent 79b1216 commit 7618030
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ The library uses two very different methods for locking, one using an underlying
Using this library is straightforward. Here's a simple example:
```csharp
private static readonly AsyncKeyedLocker<string> _asyncKeyedLocker = new(o =>
{
o.PoolSize = 20; // this is NOT a concurrency limit
o.PoolInitialFill = 1;
});
{
o.PoolSize = 20; // this is NOT a concurrency limit
o.PoolInitialFill = 1;
});

...

using (await _asyncKeyedLocker.LockAsync("test123"))
{
...
...
}
```

Expand Down

0 comments on commit 7618030

Please sign in to comment.