Skip to content

Commit

Permalink
Update AsyncLock.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisPulman committed Nov 19, 2023
1 parent 8729671 commit e673a0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Akavache.Sqlite3/AsyncLock.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public sealed class AsyncLock : IDisposable
/// </summary>
/// <param name="cancellationToken">A cancellation token which allows for release of the lock.</param>
/// <returns>A disposable which when Disposed will release the lock.</returns>
#if NETSTANDARD2_0 || XAMARINIOS || XAMARINMAC || XAMARINTVOS || MONOANDROID13_0
#if NETSTANDARD2_0 || XAMARINIOS || XAMARINMAC || XAMARINTVOS || MONOANDROID13_0 || TIZEN
public Task<IDisposable?> LockAsync(CancellationToken cancellationToken = default)
#else
public Task<IDisposable?> LockAsync(in CancellationToken cancellationToken = default)
Expand Down

0 comments on commit e673a0a

Please sign in to comment.